mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-04 21:15:55 +01:00
fix concat test on windows
This commit is contained in:
@@ -174,7 +174,7 @@ function concat(data, callback) {
|
||||
return callback(err);
|
||||
}
|
||||
|
||||
var output = files.join('\n;');
|
||||
var output = files.join(os.EOL + ';');
|
||||
fs.writeFile(data.destPath, output, callback);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user