X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0126e6d25671efbaca178c3fc5d367f840379c88..f14e42cec5fe7afa44fdd695b24a7d8a817af2f1:/misc/scripts/svn/hooks/pre-commit diff --git a/misc/scripts/svn/hooks/pre-commit b/misc/scripts/svn/hooks/pre-commit index d683f16317..2910940abf 100755 --- a/misc/scripts/svn/hooks/pre-commit +++ b/misc/scripts/svn/hooks/pre-commit @@ -11,7 +11,6 @@ svnl() { $SVNLOOK $cmd "$REPOS" -t "$TXN" $* } -set -e rc=0 # exclude all third-party files from consideration, we don't want to do any @@ -19,7 +18,8 @@ rc=0 all_changed_files=`svnl changed | \ grep "^[AU]" | \ sed 's/^....//' | \ - egrep -v "src/(tiff|regex|jpeg|stc/scintilla)"` + 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 @@ -60,3 +60,4 @@ for f in $changed_text_files; do done exit $rc +