unwrap environment during conversion to yaml

This commit is contained in:
William Welling
2022-02-16 12:10:59 -06:00
committed by GitHub
parent 78c8c38ad4
commit 2e7fb7dda6

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]) {