Author: mattip <matti.pi...@gmail.com>
Branch: 
Changeset: r997:11de30c674f6
Date: 2016-04-19 09:40 +0300
http://bitbucket.org/pypy/buildbot/changeset/11de30c674f6/

Log:    ensure cp step will not fail

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -702,7 +702,8 @@
             workdir='.'))
         self.addStep(ShellCmd(
             description="copy ctypes resource cache",
-            command=['cp', '-rv', 'pypy-c/lib_pypy/ctypes_config_cache', 
'build/lib_pypy'],
+            # the || : ensures this always succeeds, eventually remove this 
step
+            command=['cp', '-rv', 'pypy-c/lib_pypy/ctypes_config_cache', 
'build/lib_pypy', '||', ':'],
             haltOnFailure=True,
             workdir='.'))
         self.addStep(ShellCmd(
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to