This commit is contained in:
Juan Ferrer 2019-02-12 09:24:20 +01:00
parent 5dfb6bc22f
commit a21ce7fba1
1 changed files with 5 additions and 5 deletions

View File

@ -57,7 +57,7 @@ app.start = function(bootOptions, port, callback) {
}); });
}; };
app.boot = function(myBootOptions, callback) { app.boot = function(bootOptions, callback) {
// Internatinalization // Internatinalization
if (fs.existsSync(localeDir)) { if (fs.existsSync(localeDir)) {
@ -118,7 +118,7 @@ app.boot = function(myBootOptions, callback) {
} }
} }
let bootOptions = { let myBootOptions = {
appRootDir: __dirname, appRootDir: __dirname,
appConfigRootDir: rootDir, appConfigRootDir: rootDir,
modelsRootDir: rootDir, modelsRootDir: rootDir,
@ -129,10 +129,10 @@ app.boot = function(myBootOptions, callback) {
}; };
if (fs.existsSync(`/etc/salix`)) if (fs.existsSync(`/etc/salix`))
bootOptions.dsRootDir = `/etc/salix`; myBootOptions.dsRootDir = `/etc/salix`;
Object.assign(bootOptions, myBootOptions); Object.assign(myBootOptions, bootOptions);
boot(this, bootOptions, callback); boot(this, myBootOptions, callback);
}; };
if (require.main === module) if (require.main === module)