X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b883113df1f6024ec2ced371041d0f8b7f1fa87a..ceed155e8a53c121519e7725be7d1abf642dd56e:/misc/scripts/svn/hooks/pre-commit diff --git a/misc/scripts/svn/hooks/pre-commit b/misc/scripts/svn/hooks/pre-commit index 6c75f4d367..9b2bc53009 100755 --- a/misc/scripts/svn/hooks/pre-commit +++ b/misc/scripts/svn/hooks/pre-commit @@ -15,10 +15,14 @@ rc=0 # exclude all third-party files from consideration, we don't want to do any # checks for them +# +# also exclude message catalog files as they may be not in UTF-8 all_changed_files=`svnl changed | \ grep "^[AU]" | \ sed 's/^....//' | \ - egrep -v "src/(tiff|regex|jpeg|stc/scintilla)"` + egrep -v "locale/.*\.po$" | \ + egrep -v "src/(tiff|regex|jpeg|stc/scintilla)" | \ + egrep -v "_wrap.cpp"` # analyze the changed files to find all non-binary and all source files for f in $all_changed_files; do @@ -59,3 +63,4 @@ for f in $changed_text_files; do done exit $rc +