Commit a91681a
committed
fix(test): use -S flag in shebang for Linux compatibility
The shebang `#!/usr/bin/env bun run` works on macOS but fails on Linux
because the `env` command doesn't split space-separated arguments by
default. Using `#!/usr/bin/env -S bun run` makes env parse the string
as multiple arguments, enabling cross-platform compatibility.
Fixes CI failures where the mock server couldn't start due to:
/usr/bin/env: 'bun run': No such file or directory1 parent 0ca79d6 commit a91681a
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| |||
0 commit comments