From: Zachary Ware Date: Tue, 8 Jul 2014 14:41:57 +0000 (-0500) Subject: Issue #21907: Make the buildbot clean script always return 0. X-Git-Tag: v3.5.0a1~1314 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=afb52e1d4484b90d96d0a4bbce2a821e0b15a2f8;p=thirdparty%2FPython%2Fcpython.git Issue #21907: Make the buildbot clean script always return 0. The clean script is a "best effort" thing anyway, and this will hopefully revive the XP buildbot. --- diff --git a/Tools/buildbot/clean.bat b/Tools/buildbot/clean.bat index 1684e8ca9b8f..436c2a1e201f 100644 --- a/Tools/buildbot/clean.bat +++ b/Tools/buildbot/clean.bat @@ -20,3 +20,6 @@ for %%k in (kill_python.exe echo Purging all non-tracked files with `hg purge` echo on hg -R "%root%" --config extensions.purge= purge --all -X "%root%\Lib\test\data" + +@rem Clean is best effort, so we "always succeed" +@exit /b 0