Author: mattip <[email protected]>
Branch:
Changeset: r959:80cd482cd79e
Date: 2015-08-19 00:33 +0300
http://bitbucket.org/pypy/buildbot/changeset/80cd482cd79e/
Log: use a string, not a list, so shell expansion will work
diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -672,7 +672,7 @@
workdir='.'))
self.addStep(ShellCmd(
description="copy cffi import libraries",
- command=['cp', '-rv', 'pypy-c/lib_pypy/*.so', 'build/lib_pypy'],
+ command='cp -rv pypy-c/lib_pypy/*.so build/lib_pypy',
haltOnFailure=True,
workdir='.'))
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit