Skip to content

Commit 136e6c3

Browse files
authored
Refactor zsc.js to improve command handling
1 parent 10d41d4 commit 136e6c3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

compiler/zsc.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ try {
200200

201201
const result = spawnSync(
202202
process.execPath, // embedded Bun again
203-
[entryJs, ...runArgs],
203+
["bun",entryJs, ...runArgs],
204204
{ stdio: "inherit" }
205205
);
206206

@@ -211,3 +211,4 @@ try {
211211
process.exit(1);
212212
}
213213

214+

0 commit comments

Comments
 (0)