Commit bfb31c75 authored by NGPixel's avatar NGPixel

fix: config env vars parsing

[ci skip]
parent 6f6d7634
......@@ -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] }
)
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment