You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
403 B
18 lines
403 B
@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"
|