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 });