projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
73009ce
)
fix copy&paste bug in cythonrun
author
Stefan Behnel
<scoder@users.berlios.de>
Mon, 11 Apr 2011 07:14:56 +0000
(09:14 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Mon, 11 Apr 2011 07:14:56 +0000
(09:14 +0200)
bin/cythonrun
patch
|
blob
|
history
diff --git
a/bin/cythonrun
b/bin/cythonrun
index 0cd1c2898d22389a238a8ea5a49b0dd68f571b41..9f0970ae9a84043f16943e8392876100531f6493 100755
(executable)
--- 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)