We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 438dbcc commit acd18e5Copy full SHA for acd18e5
runtests.py
@@ -59,6 +59,7 @@ def runcommand(command):
59
60
def runcommands(commands):
61
if is_windows:
62
+ commands = ["\"" + comm + "\"" if " " in comm else comm for comm in commands]
63
commands = ['powershell.exe'] + commands
64
return run0(commands)
65
0 commit comments