Author: mattip <matti.pi...@gmail.com>
Branch: 
Changeset: r941:6dab224b6ce9
Date: 2015-03-16 18:46 +0200
http://bitbucket.org/pypy/buildbot/changeset/6dab224b6ce9/

Log:    fix - seperate commands (arigato)

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -405,7 +405,7 @@
                    '/D', '-' + nDays, '/c', "cmd /c rmdir /q /s @path"]
     else:
         command = ['find', Interpolate(tmp_or_crazy + pytest), '-mtime',
-                   '+' + nDays, '-exec', 'rm -r', '{}', ';'] 
+                   '+' + nDays, '-exec', 'rm', '-r', '{}', ';'] 
     factory.addStep(SuccessAlways(
         description="cleanout old test files",
         command = command,
@@ -504,7 +504,7 @@
                        '/D', '-' + nDays, '/c', "cmd /c rmdir /q /s @path"]
         else:
             command = ['find', Interpolate(tmp_or_crazy + pytest), '-mtime',
-                       '+' + nDays, '-exec', 'rm -r', '{}', ';'] 
+                       '+' + nDays, '-exec', 'rm', '-r', '{}', ';'] 
         self.addStep(SuccessAlways(
             description="cleanout old test files",
             command = command,
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to