[Python-checkins] r43061 - python/trunk/Tools/buildbot/clean.bat

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


Author: tim.peters
Date: Thu Mar 16 02:54:16 2006
New Revision: 43061

Modified:
   python/trunk/Tools/buildbot/clean.bat
Log:
Change the Windows buildbot "clean" step to remove
stale .pyc files.


Modified: python/trunk/Tools/buildbot/clean.bat
==============================================================================
--- python/trunk/Tools/buildbot/clean.bat	(original)
+++ python/trunk/Tools/buildbot/clean.bat	Thu Mar 16 02:54:16 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