[Python-checkins] r43062 - python/branches/release24-maint/Tools/buildbot/clean.bat

tim.peters python-checkins at python.org
Thu Mar 16 02:56:34 CET 2006


Author: tim.peters
Date: Thu Mar 16 02:56:34 2006
New Revision: 43062

Modified:
   python/branches/release24-maint/Tools/buildbot/clean.bat
Log:
Merge rev 43061 from the trunk.

Change the Windows buildbot "clean" step to remove
stale .pyc files.


Modified: python/branches/release24-maint/Tools/buildbot/clean.bat
==============================================================================
--- python/branches/release24-maint/Tools/buildbot/clean.bat	(original)
+++ python/branches/release24-maint/Tools/buildbot/clean.bat	Thu Mar 16 02:56:34 2006
@@ -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
+ at echo Deleting .pyc/.pyo files ...
+python_d.exe rmpyc.py


More information about the Python-checkins mailing list