Fix bins path for CI

This commit is contained in:
Sander Declerck 2025-12-02 14:19:53 +01:00
parent 3002d27273
commit f9b16cf03c
No known key found for this signature in database
2 changed files with 10 additions and 1 deletions

9
PR-TODOS.md Normal file
View file

@ -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)

View file

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