diff options
-rw-r--r-- | Tools/buildbot/clean-amd64.bat | 2 | ||||
-rw-r--r-- | Tools/buildbot/clean.bat | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Tools/buildbot/clean-amd64.bat b/Tools/buildbot/clean-amd64.bat index 7ef5e02..6e83bd9 100644 --- a/Tools/buildbot/clean-amd64.bat +++ b/Tools/buildbot/clean-amd64.bat @@ -2,5 +2,5 @@ call "%VS71COMNTOOLS%vsvars32.bat" cd PCbuild @echo Deleting .pyc/.pyo files ... -python.exe rmpyc.py +del /s Lib\*.pyc Lib\*.pyo devenv.com /clean ReleaseAMD64 pcbuild.sln diff --git a/Tools/buildbot/clean.bat b/Tools/buildbot/clean.bat index 19400a9..df50aff 100644 --- a/Tools/buildbot/clean.bat +++ b/Tools/buildbot/clean.bat @@ -2,6 +2,6 @@ call "%VS71COMNTOOLS%vsvars32.bat" cd PCbuild @echo Deleting .pyc/.pyo files ... -python_d.exe rmpyc.py +del /s Lib\*.pyc Lib\*.pyo devenv.com /clean Release pcbuild.sln devenv.com /clean Debug pcbuild.sln |