]>
git.saurik.com Git - wxWidgets.git/blob - misc/scripts/svn/hooks/pre-commit
6 SVNLOOK
=/usr
/bin
/svnlook
11 $SVNLOOK $cmd "$REPOS" -t "$TXN" $
*
16 # exclude all third-party files from consideration, we don't want to do any
18 all_changed_files
=`svnl changed | \
21 egrep -v "src/(tiff|regex|jpeg|stc/scintilla)" | \
24 # analyze the changed files to find all non-binary and all source files
25 for f
in $all_changed_files; do
26 mimetype
=`svnl proplist -v $f |
27 fgrep "svn:mime-type" |
28 sed 's/^ svn:mime-type : //'`
38 changed_text_files
="$changed_text_files $f"
42 changed_sources
="$changed_sources $f"
47 for f
in $changed_sources; do
48 if svnl
cat $f | fgrep
-q ' '; then
49 echo "Please remove TABs from $f before committing." >&2
54 for f
in $changed_text_files; do
55 if ! svnl
cat $f | iconv -f utf8
-t WCHAR_T
> /dev
/null
; then
56 echo "File $f doesn't use UTF-8, please convert it before committing." >&2
57 echo "(or set svn:mime-type property correctly if the file is binary)." >&2