blob: 1684e8ca9b8f5ffd701739a0b9bd53bad088dc99 [file] [log] [blame]
Zachary Waree12fa652014-07-07 13:39:59 -05001@echo off
2rem Used by the buildbot "clean" step.
3
4setlocal
5set root=%~dp0..\..
6set pcbuild=%root%\PCbuild
7
8echo.Attempting to kill Pythons...
9for %%k in (kill_python.exe
10 kill_python_d.exe
11 amd64\kill_python.exe
12 amd64\kill_python_d.exe
13 ) do (
14 if exist "%pcbuild%\%%k" (
15 echo.Calling %pcbuild%\%%k...
16 "%pcbuild%\%%k"
17 )
18)
19
20echo Purging all non-tracked files with `hg purge`
21echo on
22hg -R "%root%" --config extensions.purge= purge --all -X "%root%\Lib\test\data"