summaryrefslogtreecommitdiffstats
path: root/Tools/buildbot/clean-amd64.bat
blob: 7b612fe2eef7709980fda2d05c80b587adb726b6 (plain)
1
2
3
4
5
6
7
8
9
10
@rem Used by the buildbot "clean" step.
call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
@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|x64"
vcbuild /clean pcbuild.sln "Debug|x64"
cd ..