diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-03-05 22:24:31 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-03-05 22:24:31 +0000 |
commit | 195ea26821ea1365c1ce0bff888512614c232b1a (patch) | |
tree | 9c8ab3a398fbb6636012caeb232858554d621c32 /Tools/buildbot | |
parent | c2b533f80aa4b4791c9be99325341f20f0760e20 (diff) | |
download | cpython-195ea26821ea1365c1ce0bff888512614c232b1a.tar.gz |
cd PCbuild only after deleting all pyc files.
Diffstat (limited to 'Tools/buildbot')
-rw-r--r-- | Tools/buildbot/clean.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/buildbot/clean.bat b/Tools/buildbot/clean.bat index 15d7365068..ec71804da0 100644 --- a/Tools/buildbot/clean.bat +++ b/Tools/buildbot/clean.bat @@ -1,7 +1,7 @@ @rem Used by the buildbot "clean" step. call "%VS90COMNTOOLS%vsvars32.bat" -cd PCbuild @echo Deleting .pyc/.pyo files ... del /s Lib\*.pyc Lib\*.pyo +cd PCbuild vcbuild /clean pcbuild.sln "Release|Win32" vcbuild /clean pcbuild.sln "Debug|Win32" |