Merge pull request #1526 from wwelling/patch-1

[Issue 1525] Unwrap environment during conversion to YAML
This commit is contained in:
Tim Donohue
2022-02-17 15:16:29 -06:00
committed by GitHub

View File

@@ -24,7 +24,7 @@ if (!fs.existsSync(envFullPath)) {
}
try {
const env = require(envFullPath);
const env = require(envFullPath).environment;
const config = yaml.dump(env);
if (args[1]) {