Author: mattip <[email protected]>
Branch: issue-1759
Changeset: r933:ca41205fb092
Date: 2015-02-12 22:12 +0200
http://bitbucket.org/pypy/buildbot/changeset/ca41205fb092/

Log:    fix for linux

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

Reply via email to