diff options
author | 2023-02-01 10:56:08 -0800 | |
---|---|---|
committer | 2023-02-01 10:56:08 -0800 | |
commit | 9c27b5d17f3e2c54482be7df05577ca36dd824b3 (patch) | |
tree | 7314889755c0760b3525bb4ef2ba030ca367d840 /packages/bun-release/scripts/npm-postinstall.ts | |
parent | 9973df028b9c272ea88804705282c4c31a4295e8 (diff) | |
download | bun-9c27b5d17f3e2c54482be7df05577ca36dd824b3.tar.gz bun-9c27b5d17f3e2c54482be7df05577ca36dd824b3.tar.zst bun-9c27b5d17f3e2c54482be7df05577ca36dd824b3.zip |
Fix getting SHA for canary
Diffstat (limited to 'packages/bun-release/scripts/npm-postinstall.ts')
-rw-r--r-- | packages/bun-release/scripts/npm-postinstall.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/bun-release/scripts/npm-postinstall.ts b/packages/bun-release/scripts/npm-postinstall.ts index bde044300..e0f5d5aaf 100644 --- a/packages/bun-release/scripts/npm-postinstall.ts +++ b/packages/bun-release/scripts/npm-postinstall.ts @@ -1,10 +1,10 @@ import { importBun, optimizeBun } from "../src/npm/install"; importBun() - .then((path) => { + .then(path => { optimizeBun(path); }) - .catch((error) => { + .catch(error => { console.error(error); process.exit(1); }); |