Commit cfbae1d8 authored by Stefan Behnel's avatar Stefan Behnel

fix copy&paste bug in cythonrun

parent 73009ce2
......@@ -32,7 +32,7 @@ def runcmd(cmd, shell=True):
cmd = ' '.join(cmd)
if DEBUG:
print(cmd)
returncode = subprocess.call(cmd, shell=True)
returncode = subprocess.call(cmd, shell=shell)
if returncode:
sys.exit(returncode)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment