fix: config env vars parsing

[ci skip]
This commit is contained in:
NGPixel 2017-05-15 21:09:53 -04:00
parent 6f6d7634d5
commit bfb31c75a9

View File

@ -12,8 +12,8 @@ module.exports = {
parseConfigValue (cfg) {
return _.replace(
cfg,
(/\$\(([A-Z0-9_]+)\)/g,
(fm, m) => { return process.env[m] })
/\$\(([A-Z0-9_]+)\)/g,
(fm, m) => { return process.env[m] }
)
}
}