]> git.saurik.com Git - wxWidgets.git/commitdiff
Exclude files in vendor branches from svn hook checks.
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 3 Dec 2012 17:05:07 +0000 (17:05 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 3 Dec 2012 17:05:07 +0000 (17:05 +0000)
These files correspond to upstream sources and shouldn't be subject to our
checks.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73108 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

misc/scripts/svn/hooks/pre-commit

index 38cca6f0d710f9e0f1eeec71f74e20023c15d8d4..7c1ccd7d758c1178a32c6d600885dadfee6df399 100755 (executable)
@@ -21,6 +21,7 @@ all_changed_files=`svnl changed | \
                     grep "^[AU]" | \
                     sed 's/^....//' | \
                     egrep -v "branches/WX_2_" | \
+                    egrep -v "wxWidgets/vendor" | \
                     egrep -v "src/(tiff|regex|jpeg|stc/scintilla)" | \
                     egrep -v "_wrap.cpp" | \
                     egrep -v "wxPython/.*/docs/.*\.html$"`