Remove .chm files from windows build

This commit is contained in:
twangboy 2015-03-30 14:26:30 +00:00
parent f2ecac1b3c
commit 110b0ef6f1

View File

@ -32,6 +32,8 @@ xcopy /S /E "%PyDir%" "%BinDir%\"
@ echo -------------------------------------------
:: Remove all Compiled Python files (.pyc)
del /S /Q "%BinDir%\*.pyc"
:: Remove all Compiled HTML Help (.chm)
del /S /Q "%BinDir%\*.chm"
:: Delete Unused Docs and Modules
If Exist "%BinDir%\Doc" rd /S /Q "%BinDir%\Doc"