summaryrefslogtreecommitdiff
path: root/AppPkg/Applications/Python/Python-2.7.2/Tools/buildbot/clean.bat
diff options
context:
space:
mode:
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Tools/buildbot/clean.bat')
-rw-r--r--AppPkg/Applications/Python/Python-2.7.2/Tools/buildbot/clean.bat10
1 files changed, 10 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Tools/buildbot/clean.bat b/AppPkg/Applications/Python/Python-2.7.2/Tools/buildbot/clean.bat
new file mode 100644
index 0000000000..cf8a6b747c
--- /dev/null
+++ b/AppPkg/Applications/Python/Python-2.7.2/Tools/buildbot/clean.bat
@@ -0,0 +1,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 ..