show correct path on windows

This commit is contained in:
psychobunny
2014-05-31 16:53:18 -04:00
parent ef831cca9a
commit 85aa88e6ed

3
app.js
View File

@@ -64,8 +64,9 @@ winston.info('This is free software, and you are welcome to redistribute it unde
winston.info('');
// Alternate configuration file support
var configFile = __dirname + '/config.json',
var configFile = path.join(__dirname, '/config.json'),
configExists;
if (nconf.get('config')) {
configFile = path.resolve(__dirname, nconf.get('config'));
}