Skip to content

Commit 8929279

Browse files
committed
fix: update .bin/bun
1 parent a2f68a3 commit 8929279

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.bin/bun

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Common bun installation paths to check
44
BUN_PATHS=(
@@ -261,7 +261,7 @@ doesnt_need_secrets() {
261261
# Check for integration/e2e tests that require tmux
262262
# Convention: test files matching *integration*.test.ts or *e2e*.test.ts
263263
local needs_tmux=false
264-
264+
265265
for arg in "$@"; do
266266
# Check if running integration or e2e tests
267267
if [[ "$arg" =~ (integration|e2e).*\.test\.(ts|tsx|js|jsx) ]]; then
@@ -276,7 +276,7 @@ doesnt_need_secrets() {
276276
fi
277277
fi
278278
done
279-
279+
280280
# If running integration/e2e tests, check tmux availability
281281
if [ "$needs_tmux" = true ]; then
282282
if ! check_tmux_installed; then

0 commit comments

Comments
 (0)