summaryrefslogtreecommitdiffstats
path: root/Tools/buildbot/clean.bat
blob: 2c12c3e08dd79ec12a738e4506b579fc5684d307 (plain)
1
2
3
4
5
6
7
8
9
10
@rem Used by the buildbot "clean" step.
call "%VS100COMNTOOLS%vsvars32.bat"
@echo Deleting .pyc/.pyo files ...
del /s Lib\*.pyc Lib\*.pyo
@echo Deleting test leftovers ...
rmdir /s /q build
cd PCbuild
vcbuild /clean pcbuild.sln "Release|Win32"
vcbuild /clean pcbuild.sln "Debug|Win32"
cd ..