mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
windows doesnt like running js with shebangs
This commit is contained in:
@@ -588,8 +588,8 @@ async function spawnCitgmTest(execPath, testPath) {
|
||||
};
|
||||
|
||||
const result = await spawnSafe({
|
||||
command: resolve(join(import.meta.dirname, "run-citgm-test.ts")),
|
||||
args: [execPath, testPath],
|
||||
command: execPath,
|
||||
args: [resolve(join(import.meta.dirname, "run-citgm-test.ts")), execPath, testPath],
|
||||
cwd: cwd,
|
||||
timeout: timeout,
|
||||
env: bunEnv,
|
||||
|
||||
Reference in New Issue
Block a user