diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-03-16 01:56:34 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-03-16 01:56:34 (GMT) |
commit | b6b7a3ac4713a9df4faed774aa8868cf507adbb8 (patch) | |
tree | 0e3f3cf76665aa7fd36b2e3c070b404030e94a56 | |
parent | 854e91889f2cf76cccc100471fab4135958fbfa9 (diff) | |
download | cpython-b6b7a3ac4713a9df4faed774aa8868cf507adbb8.zip cpython-b6b7a3ac4713a9df4faed774aa8868cf507adbb8.tar.gz cpython-b6b7a3ac4713a9df4faed774aa8868cf507adbb8.tar.bz2 |
Merge rev 43061 from the trunk.
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 d28262e..7e7d713 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 |