changeset: 91611:06589e81fd56 user: Zachary Ware date: Tue Jul 08 09:41:57 2014 -0500 files: Tools/buildbot/clean.bat description: 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 -r c7960cc9daa5 -r 06589e81fd56 Tools/buildbot/clean.bat --- a/Tools/buildbot/clean.bat Tue Jul 08 12:43:24 2014 +0200 +++ b/Tools/buildbot/clean.bat Tue Jul 08 09:41:57 2014 -0500 @@ -20,3 +20,6 @@ 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