diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-03-05 22:24:31 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-03-05 22:24:31 (GMT) |
commit | 4291b19d4e7e38cd4cff83b6e90fc8581aa0301f (patch) | |
tree | df3c53c1feda3027dc97335a4914d057ea128a63 /Tools | |
parent | 6e3e415886fbd1c9e6df8393f87d7d40d96b5ec8 (diff) | |
download | cpython-4291b19d4e7e38cd4cff83b6e90fc8581aa0301f.zip cpython-4291b19d4e7e38cd4cff83b6e90fc8581aa0301f.tar.gz cpython-4291b19d4e7e38cd4cff83b6e90fc8581aa0301f.tar.bz2 |
cd PCbuild only after deleting all pyc files.
Diffstat (limited to 'Tools')
-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 15d7365..ec71804 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" |