diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-26 21:18:44 +0100 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-26 21:18:44 +0100 |
commit | ff5ee0cfef8b63c221d75af2009a31f6bdde664f (patch) | |
tree | 991e1a1099c53358189d70241c7e9e2a6179010c | |
parent | 4aeb542a72ed44b56adc6fe190a6d84ebdfe140e (diff) | |
parent | d8ad68f34c23645c1a1dfadd63470b3851ba5bea (diff) | |
download | cpython-git-ff5ee0cfef8b63c221d75af2009a31f6bdde664f.tar.gz |
Merge
-rw-r--r-- | Tools/buildbot/clean-amd64.bat | 5 | ||||
-rw-r--r-- | Tools/buildbot/clean.bat | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/Tools/buildbot/clean-amd64.bat b/Tools/buildbot/clean-amd64.bat index 9fb35e9453..715805a7c1 100644 --- a/Tools/buildbot/clean-amd64.bat +++ b/Tools/buildbot/clean-amd64.bat @@ -1,7 +1,10 @@ @rem Used by the buildbot "clean" step. call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 -cd PCbuild @echo Deleting .pyc/.pyo files ... del /s Lib\*.pyc Lib\*.pyo +@echo Deleting test leftovers ... +rmdir /s /q build +cd PCbuild vcbuild /clean pcbuild.sln "Release|x64" vcbuild /clean pcbuild.sln "Debug|x64" +cd .. diff --git a/Tools/buildbot/clean.bat b/Tools/buildbot/clean.bat index ec71804da0..5c8f33ecca 100644 --- a/Tools/buildbot/clean.bat +++ b/Tools/buildbot/clean.bat @@ -2,6 +2,9 @@ call "%VS90COMNTOOLS%vsvars32.bat" @echo Deleting .pyc/.pyo files ... del /s Lib\*.pyc Lib\*.pyo +@echo Deleting test leftovers ... +rmdir /s /q build cd PCbuild vcbuild /clean pcbuild.sln "Release|Win32" vcbuild /clean pcbuild.sln "Debug|Win32" +cd .. |