From 5de43c1bf231220dfb8f41e3d86083e213407d02 Mon Sep 17 00:00:00 2001 From: Reinier Criel Date: Wed, 17 Dec 2025 13:26:14 +0100 Subject: [PATCH] Some modifications --- packages/safe-chain/src/shell-integration/setup-ci.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/safe-chain/src/shell-integration/setup-ci.js b/packages/safe-chain/src/shell-integration/setup-ci.js index 54b8505..762bd9b 100644 --- a/packages/safe-chain/src/shell-integration/setup-ci.js +++ b/packages/safe-chain/src/shell-integration/setup-ci.js @@ -160,8 +160,8 @@ function modifyPathForCi(shimsDir, binDir) { if (process.env.BASH_ENV) { // In CircleCI, persisting PATH across steps is done by appending shell exports - // to the file referenced by BASH_ENV. CircleCI sources this file for each step. - const exportLine = `export PATH=\"${shimsDir}:${binDir}:$PATH\"` + os.EOL; + // to the file referenced by BASH_ENV. CircleCI sources this file for 'run' each step. + const exportLine = `export PATH="${shimsDir}:${binDir}:$PATH"` + os.EOL; fs.appendFileSync(process.env.BASH_ENV, exportLine, "utf-8"); ui.writeInformation(`Added shims directory to BASH_ENV for CircleCI.`); }