Files
cpython/Tools/buildbot/clean.bat
Zachary Ware afa6a38960 [3.5] bpo-27425: Be more explicit in .gitattributes (GH-840) (GH-2084)
Also updates checked-in line endings on some files.
2017-06-10 15:40:08 -05:00

17 lines
355 B
Batchfile

@echo off
rem Used by the buildbot "clean" step.
setlocal
set root=%~dp0..\..
set pcbuild=%root%\PCbuild
echo Deleting build
call "%pcbuild%\build.bat" -t Clean -k %*
call "%pcbuild%\build.bat" -t Clean -k -d %*
echo Deleting .pyc/.pyo files ...
del /s "%root%\Lib\*.pyc" "%root%\Lib\*.pyo"
echo Deleting test leftovers ...
rmdir /s /q "%root%\build"