Skip to content

Commit

Permalink
Update spawn.luau
Browse files Browse the repository at this point in the history
explicit "powershell" instead of `true`
  • Loading branch information
SnorlaxAssist authored Sep 25, 2023
1 parent 1f9f683 commit 7005755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/process/spawn.luau
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ local echoResult = process.spawn("echo", {
if isWindows then '"$Env:TEST_VAR"' else '"$TEST_VAR"',
}, {
env = { TEST_VAR = echoMessage },
shell = if isWindows then true else "bash", -- bash does not exist on Windows, using default shell option instead.
shell = if isWindows then "powershell" else "bash", -- "bash" does not exist on Windows, using "powershell" instead.
stdio = "inherit",
})

Expand Down

0 comments on commit 7005755

Please sign in to comment.