From afb52e1d4484b90d96d0a4bbce2a821e0b15a2f8 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Tue, 8 Jul 2014 09:41:57 -0500 Subject: 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. --- Tools/buildbot/clean.bat | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Tools/buildbot/clean.bat b/Tools/buildbot/clean.bat index 1684e8c..436c2a1 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 -- cgit v0.12