From: Vadim Zeitlin Date: Sat, 8 Jun 2013 02:29:06 +0000 (+0000) Subject: Exclude src/msw/version.rc from svn pre-commit hook checks. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/57b15758aaf0edead6a83eba983fe7ed2ff668a9?hp=944961e400d4f29a754797e2f87b506d96318ea5 Exclude src/msw/version.rc from svn pre-commit hook checks. This file must be remain in CP1252 encoding and not UTF-8 because this is what Windows uses for showing the strings in it, so exclude it from this check. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74126 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/misc/scripts/svn/hooks/pre-commit b/misc/scripts/svn/hooks/pre-commit index 7c1ccd7d75..c4a3bf033e 100755 --- a/misc/scripts/svn/hooks/pre-commit +++ b/misc/scripts/svn/hooks/pre-commit @@ -23,6 +23,7 @@ all_changed_files=`svnl changed | \ egrep -v "branches/WX_2_" | \ egrep -v "wxWidgets/vendor" | \ egrep -v "src/(tiff|regex|jpeg|stc/scintilla)" | \ + egrep -v "src/msw/version.rc" | \ egrep -v "_wrap.cpp" | \ egrep -v "wxPython/.*/docs/.*\.html$"`