From 378832c914878972dc64d202aca4291844dbd4f3 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Thu, 16 Mar 2006 01:54:16 +0000 Subject: [PATCH] Change the Windows buildbot "clean" step to remove stale .pyc files. --- Tools/buildbot/clean.bat | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- 2.40.0