diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-07-08 14:41:57 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-07-08 14:41:57 (GMT) |
commit | afb52e1d4484b90d96d0a4bbce2a821e0b15a2f8 (patch) | |
tree | 4fee0b1c500e67d4ce2907259a9339f90ff42974 /Tools | |
parent | 4532c43e16c8d40101759f8ddd0e5631c3626e34 (diff) | |
download | cpython-afb52e1d4484b90d96d0a4bbce2a821e0b15a2f8.zip cpython-afb52e1d4484b90d96d0a4bbce2a821e0b15a2f8.tar.gz cpython-afb52e1d4484b90d96d0a4bbce2a821e0b15a2f8.tar.bz2 |
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.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/buildbot/clean.bat | 3 |
1 files changed, 3 insertions, 0 deletions
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 |