File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -9,21 +9,17 @@ REM (see PythonQwt LICENSE file for more details)
99REM ======================================================
1010call %~dp0 utils GetScriptPath SCRIPTPATH
1111call %FUNC% GetLibName LIBNAME
12+ call %FUNC% GetModName MODNAME
1213cd %SCRIPTPATH% \..\
1314
1415@ REM Removing files/directories related to Python/doc build process
1516if exist %LIBNAME% .egg-info ( rmdir /s /q %LIBNAME% .egg-info )
16- if exist %LIBNAME% \ %LIBNAME% .chm ( del / q %LIBNAME% \ %LIBNAME% .chm )
17+ if exist %MODNAME% .egg-info ( rmdir /s / q %MODNAME% .egg-info )
1718if exist MANIFEST ( del /q MANIFEST )
1819if exist build ( rmdir /s /q build )
1920if exist dist ( rmdir /s /q dist )
2021if exist doc\_build ( rmdir /s /q doc\_build )
2122
22- @ REM Removing files produced by tests
23- del *.png
24- del *.tif
25- del *.pickle
26-
2723@ REM Removing cache files/directories related to Python execution
2824del /s /q *.pyc 1 > nul 2 >& 1
2925del /s /q *.pyo 1 > nul 2 >& 1
@@ -40,4 +36,4 @@ if exist .coverage ( del /q .coverage )
4036if exist coverage.xml ( del /q coverage.xml )
4137if exist htmlcov ( rmdir /s /q htmlcov )
4238del /q .coverage.* 1 > nul 2 >& 1
43- if exist sitecustomize.py ( del /q sitecustomize.py )
39+ if exist sitecustomize.py ( del /q sitecustomize.py )
You can’t perform that action at this time.
0 commit comments