We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2f68a3 commit 8929279Copy full SHA for 8929279
.bin/bun
@@ -1,4 +1,4 @@
1
-#!/bin/bash
+#!/usr/bin/env bash
2
3
# Common bun installation paths to check
4
BUN_PATHS=(
@@ -261,7 +261,7 @@ doesnt_need_secrets() {
261
# Check for integration/e2e tests that require tmux
262
# Convention: test files matching *integration*.test.ts or *e2e*.test.ts
263
local needs_tmux=false
264
-
+
265
for arg in "$@"; do
266
# Check if running integration or e2e tests
267
if [[ "$arg" =~ (integration|e2e).*\.test\.(ts|tsx|js|jsx) ]]; then
@@ -276,7 +276,7 @@ doesnt_need_secrets() {
276
fi
277
278
done
279
280
# If running integration/e2e tests, check tmux availability
281
if [ "$needs_tmux" = true ]; then
282
if ! check_tmux_installed; then
0 commit comments