From: Stefan Behnel Date: Mon, 11 Apr 2011 07:14:56 +0000 (+0200) Subject: fix copy&paste bug in cythonrun X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=cfbae1d832459a91106d9c6bc217f51df0fca2b3;p=cython.git fix copy&paste bug in cythonrun --- diff --git a/bin/cythonrun b/bin/cythonrun index 0cd1c289..9f0970ae 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)