File tree 1 file changed +11
-1
lines changed
1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,16 @@ del /s /q *.orig 1>nul 2>&1
32
32
33
33
@ REM Removing localization template files
34
34
if exist doc\locale\pot ( rmdir /s /q doc\locale\pot )
35
+ del /s /q %MODNAME% \locale\%MODNAME% .pot 1 > nul 2 >& 1
36
+
37
+ @ REM Removing files related to documentation generation
38
+ del /q doc/contributing/changelog.md 1 > nul 2 >& 1
39
+
40
+ @ REM Removing generated PDF documentation files
41
+ del /q %MODNAME% \data\doc\%LIBNAME% *.pdf 1 > nul 2 >& 1
42
+
43
+ @ REM Log files
44
+ del /s /q *.log 1 > nul 2 >& 1
35
45
36
46
@ REM Removing files/directories related to Coverage and pytest
37
47
if exist .coverage ( del /q .coverage )
@@ -46,4 +56,4 @@ if exist wix\bin ( rmdir /s /q wix\bin )
46
56
if exist wix\obj ( rmdir /s /q wix\obj )
47
57
if exist wix\*.bmp ( del /q wix\*.bmp )
48
58
if exist wix\*.wixpdb ( del /q wix\*.wixpdb )
49
- if exist wix\ %LIBNAME% .wxs ( del /q wix\%LIBNAME% .wxs )
59
+ del /q wix\%LIBNAME% * .wxs 1 > nul 2 >& 1
You can’t perform that action at this time.
0 commit comments