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

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