1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-23 11:56:00 +01:00

gulp fix for env

This commit is contained in:
Kyle Spearrin 2017-04-18 14:01:28 -04:00
parent af698c7628
commit c8931cde6e

View File

@ -216,7 +216,7 @@ function config() {
version: project.version,
environment: project.env
}
}, require('./settings.' + project.env + '.json') || {})
}, require('./settings' + (project.env !== 'Development' ? ('.' + project.env) : '') + '.json') || {})
}));
}