chore(tests): fix stream test failing on windows cmd

This commit is contained in:
Erica Marigold 2024-06-11 09:09:47 +05:30 committed by GitHub
parent 80ebab4d70
commit cf707a37ff
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -12,7 +12,7 @@ assert(
)
local echoChild = if process.os == "windows"
then process.spawn("cmd.exe", { "/c", "echo", msg, "1>&2" })
then process.spawn("/c", { "echo", msg, "1>&2" }, { shell = "cmd" })
else process.spawn("echo", { msg, ">>/dev/stderr" }, { shell = true })
assert(