Revision a2d4281415e67c62f91363376db97eb66a9fb716 authored by Donghee Na on 14 February 2024, 17:00:50 UTC, committed by GitHub on 14 February 2024, 17:00:50 UTC
1 parent 4b2d178
Raw File
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