diff options
author | Neil <nyamatongwe@gmail.com> | 2023-02-09 15:40:49 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2023-02-09 15:40:49 +1100 |
commit | f2455fabf07576db6224262ce8b62a59429534e3 (patch) | |
tree | cb25e318ce7b5d3059d1eaec28f526cc0d2a540c | |
parent | ee51994b0d97c3551ff8b63abc82038acd8450e3 (diff) | |
download | scintilla-mirror-f2455fabf07576db6224262ce8b62a59429534e3.tar.gz |
Make zip filter out more build artifacts.
-rwxr-xr-x | zipsrc.bat | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/zipsrc.bat b/zipsrc.bat index e9268fae2..d7d9062a2 100755 --- a/zipsrc.bat +++ b/zipsrc.bat @@ -1,4 +1,6 @@ cd .. del/q scintilla.zip -zip scintilla.zip scintilla\*.* scintilla\*\*.* scintilla\*\*\*.* scintilla\*\*\*\*.* scintilla\*\*\*\*\*.* -x *.o -x *.obj -x *.dll -x *.lib -x *.res -x *.exp +zip scintilla.zip scintilla\*.* scintilla\*\*.* scintilla\*\*\*.* scintilla\*\*\*\*.* scintilla\*\*\*\*\*.* ^ + -x *.o *.obj *.dll *.lib *.res *.exp *.bak *.tgz ^ + **/__pycache__/* **/Debug/* **/Release/* **/x64/* **/ARM64/* **/cov-int/* */.hg/* @ cd scintilla |