Skip to content

Commit

Permalink
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/runner.js.map
3 changes: 2 additions & 1 deletion src/runner.ts
@@ -249,7 +249,8 @@ program
const shEnvFileContents = Object.entries(tracerConfig.env)
// Some vars contain ${LIB} that we do not want to be expanded when executing this script
.map(
([key, value]) => `export ${key}='${value.replace(/'/g, "'\"'\"'")}'`
([key, value]) =>
`export ${key}='${value.replace(/'/g, "'\"'\"'")}'`
)
.join("\n");
fs.writeFileSync(shEnvFile, shEnvFileContents);

0 comments on commit a6ebb19

Please sign in to comment.