Staging
v0.5.1
https://github.com/python/cpython
Revision 7f946195558b3681b81707c52b721d067373acee authored by Raymond Hettinger on 21 November 2016, 23:13:18 UTC, committed by Raymond Hettinger on 21 November 2016, 23:13:18 UTC
1 parent 5bd5b9d
Raw File
Tip revision: 7f946195558b3681b81707c52b721d067373acee authored by Raymond Hettinger on 21 November 2016, 23:13:18 UTC
Fix grammar
Tip revision: 7f94619
clean.bat
@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"
del /s "%pcbuild%\python*.zip"
back to top