fix: config env vars parsing

This commit is contained in:
NGPixel
2017-05-14 21:20:40 -04:00
parent 20ef07bef3
commit 59ce39f033
4 changed files with 6 additions and 16 deletions

View File

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