From f9b16cf03cef0927b43bb257e6066c78eccf410e Mon Sep 17 00:00:00 2001 From: Sander Declerck Date: Tue, 2 Dec 2025 14:19:53 +0100 Subject: [PATCH] Fix bins path for CI --- PR-TODOS.md | 9 +++++++++ packages/safe-chain/src/shell-integration/setup-ci.js | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 PR-TODOS.md diff --git a/PR-TODOS.md b/PR-TODOS.md new file mode 100644 index 0000000..dd23eef --- /dev/null +++ b/PR-TODOS.md @@ -0,0 +1,9 @@ +- [x] Update shims +- [x] Release pipeline +- [x] Install script +- [ ] Check if we can improve on python runner +- [x] Documentation +- [ ] Version in install scripts (to latest) +- [ ] Uncomment release pipeline (to latest) + +- [ ] Test with PATH shims (osx / windows) diff --git a/packages/safe-chain/src/shell-integration/setup-ci.js b/packages/safe-chain/src/shell-integration/setup-ci.js index 28109fb..9228673 100644 --- a/packages/safe-chain/src/shell-integration/setup-ci.js +++ b/packages/safe-chain/src/shell-integration/setup-ci.js @@ -29,7 +29,7 @@ export async function setupCi() { ui.emptyLine(); const shimsDir = path.join(os.homedir(), ".safe-chain", "shims"); - const binDir = path.join(os.homedir(), ".safe-chain", "shims"); + const binDir = path.join(os.homedir(), ".safe-chain", "bin"); // Create the shims directory if it doesn't exist if (!fs.existsSync(shimsDir)) { fs.mkdirSync(shimsDir, { recursive: true });