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 | |
| parent | cf79aace07a57d480605f4a5aa8b9ca68567792e (diff) | |
| download | cpython-git-378832c914878972dc64d202aca4291844dbd4f3.tar.gz | |
Change the Windows buildbot "clean" step to remove
stale .pyc files.
| -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 d28262e43c..7e7d713ed9 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 |
