We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc918f2 commit 4be7188Copy full SHA for 4be7188
scripts/clean_up.bat
@@ -0,0 +1,16 @@
1
+@echo off
2
+REM ======================================================
3
+REM Clean up repository
4
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
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