fixed sounds on windows

v1.18.x
psychobunny 10 years ago
parent 0feb11f205
commit e74f3da89e

@ -41,7 +41,11 @@ module.exports = function(Meta) {
// Link paths
async.each(filePaths, function(filePath, next) {
fs.symlink(filePath, path.join(soundsPath, path.basename(filePath)), 'file', next);
if (process.platform === 'win32') {
fs.link(filePath, path.join(soundsPath, path.basename(filePath)), next);
} else {
fs.symlink(filePath, path.join(soundsPath, path.basename(filePath)), 'file', next);
}
}, function(err) {
if (!err) {
winston.verbose('[sounds] Sounds OK');

Loading…
Cancel
Save