debugpy/clean.cmd

19 строки
253 B
Batchfile
Исходник Обычный вид История

@echo off
pushd %~dp0
rd /s /q build dist
del /s /q *.pyc
del /s /q *.pyo
for /d /r %%i in (__pycache__.*) do rd "%%i"
popd
pushd %~dp0\src
del /s /q *.pyd
del /s /q *-linux-gnu.so
popd
pushd %~dp0\tests
del /s /q *.pyd
del /s /q *-linux-gnu.so
popd