]>
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)"`
23 # analyze the changed files to find all non-binary and all source files
24 for f
in $all_changed_files; do
25 mimetype
=`svnl proplist -v $f |
26 fgrep "svn:mime-type" |
27 sed 's/^ svn:mime-type : //'`
37 changed_text_files
="$changed_text_files $f"
41 changed_sources
="$changed_sources $f"
46 for f
in $changed_sources; do
47 if svnl
cat $f | fgrep
-q ' '; then
48 echo "Please remove TABs from $f before committing." >&2
53 for f
in $changed_text_files; do
54 if ! svnl
cat $f | iconv -f utf8
-t WCHAR_T
> /dev
/null
; then
55 echo "File $f doesn't use UTF-8, please convert it before committing." >&2
56 echo "(or set svn:mime-type property correctly if the file is binary)." >&2