Skip to content

Commit b9a972e

Browse files
committed
fix: attempt to fix bun installer
1 parent e8cffe6 commit b9a972e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

scripts/2-install.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ echo
2929
cd "$E2E" || exit 1
3030

3131
if [ "$PKG_MGR" = "bun" ]; then
32-
bun install && \
33-
bun add sqlite3 && \
34-
bun add "$PACKAGE"
32+
rm -rf node_modules yarn.lock package-lock.json bun.lockb && \
33+
bun add sqlite3 "$PACKAGE"
3534
else
3635
npm install --legacy-peer-deps && \
3736
npm install sqlite3 --save && \

0 commit comments

Comments
 (0)