summaryrefslogtreecommitdiffstats
path: root/Tools/buildbot/clean.bat
blob: 5c8f33eccaacfe9e38d3a09cdd7419caa0afd376 (plain)
1
2
3
4
5
6
7
8
9
10
@rem Used by the buildbot "clean" step.
call "%VS90COMNTOOLS%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 ..