Only write config file during postinstall if process env variables are present (#91793)

This commit is contained in:
Rachel Macfarlane
2020-03-02 12:45:33 -08:00
committed by GitHub
parent a8c3c47555
commit b2b488fa43
@@ -20,7 +20,9 @@ function main() {
} }
} }
fs.writeFileSync(path.join(__dirname, '../src/common/config.json'), JSON.stringify(content)); if (Object.keys(content).length > 0) {
fs.writeFileSync(path.join(__dirname, '../src/common/config.json'), JSON.stringify(content));
}
} }
main(); main();