Skip to content

Commit 4be7188

Browse files
Create clean_up.bat
1 parent cc918f2 commit 4be7188

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

scripts/clean_up.bat

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
@echo off
2+
REM ======================================================
3+
REM Clean up repository
4+
REM ======================================================
5+
REM Licensed under the terms of the MIT License
6+
REM Copyright (c) 2020 Pierre Raybaut
7+
REM (see PythonQwt LICENSE file for more details)
8+
REM ======================================================
9+
call %~dp0utils GetScriptPath SCRIPTPATH
10+
call %FUNC% GetLibName LIBNAME
11+
cd %SCRIPTPATH%\..\
12+
if exist MANIFEST ( del /q MANIFEST )
13+
if exist build ( rmdir /s /q build )
14+
if exist dist ( rmdir /s /q dist )
15+
del /s /q *.pyc
16+
FOR /d /r %%d IN ("__pycache__") DO @IF EXIST "%%d" rd /s /q "%%d"

0 commit comments

Comments
 (0)