diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-03-16 01:54:16 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-03-16 01:54:16 +0000 |
commit | 378832c914878972dc64d202aca4291844dbd4f3 (patch) | |
tree | 63aad3de2c165263b54bc5d2f3b10bc354092406 /Tools | |
parent | Merge the tim-obmalloc branch to the trunk. (diff) | |
download | cpython-378832c914878972dc64d202aca4291844dbd4f3.tar.gz cpython-378832c914878972dc64d202aca4291844dbd4f3.tar.bz2 cpython-378832c914878972dc64d202aca4291844dbd4f3.zip |
Change the Windows buildbot "clean" step to remove
stale .pyc files.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/buildbot/clean.bat | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tools/buildbot/clean.bat b/Tools/buildbot/clean.bat index d28262e43c2..7e7d713ed9b 100644 --- a/Tools/buildbot/clean.bat +++ b/Tools/buildbot/clean.bat @@ -1,3 +1,6 @@ @rem Used by the buildbot "clean" step. call "%VS71COMNTOOLS%vsvars32.bat" -devenv.com /clean Debug PCbuild\pcbuild.sln +cd PCbuild +devenv.com /clean Debug pcbuild.sln +@echo Deleting .pyc/.pyo files ... +python_d.exe rmpyc.py |