summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/cythonrun2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/cythonrun b/bin/cythonrun
index 0cd1c2898..9f0970ae9 100755
--- a/bin/cythonrun
+++ b/bin/cythonrun
@@ -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)