From: Vadim Zeitlin Date: Sat, 6 Jul 2013 14:46:26 +0000 (+0000) Subject: Exclude expat files from pre commit hook checks too. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d20f23838d8d8e804063b0ee850cbc35e20bacd9 Exclude expat files from pre commit hook checks too. All the other 3rd party libraries were already excluded but not this one, for some reason -- do exclude it now as upcoming Expat 2.1.0 sources contain some files with TABs. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74414 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/misc/scripts/svn/hooks/pre-commit b/misc/scripts/svn/hooks/pre-commit index c4a3bf033e..779f046215 100755 --- a/misc/scripts/svn/hooks/pre-commit +++ b/misc/scripts/svn/hooks/pre-commit @@ -22,7 +22,7 @@ all_changed_files=`svnl changed | \ sed 's/^....//' | \ egrep -v "branches/WX_2_" | \ egrep -v "wxWidgets/vendor" | \ - egrep -v "src/(tiff|regex|jpeg|stc/scintilla)" | \ + egrep -v "src/(expat|tiff|regex|jpeg|stc/scintilla)" | \ egrep -v "src/msw/version.rc" | \ egrep -v "_wrap.cpp" | \ egrep -v "wxPython/.*/docs/.*\.html$"`