X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/708e73052e8c7b27da76457e9c5187f6235cdd7f..320bf9ceec62cacabb3b2d811f9139a1db2f4f1f:/distrib/scripts/is_text.sh diff --git a/distrib/scripts/is_text.sh b/distrib/scripts/is_text.sh index 60341c48a8..acde39fecd 100755 --- a/distrib/scripts/is_text.sh +++ b/distrib/scripts/is_text.sh @@ -1,4 +1,14 @@ #!/bin/sh + +############################################################################### +# Name: is_text.sh +# Purpose: returns 0 if the file in cvs tree is text, 1 if binary +# Version: $Id$ +# Author: VZ +# Created: 2006-07-19 +# Copyright: (c) Vadim Zeitlin 2006 +############################################################################### + if [ $# != 1 ]; then echo "Usage: $0 " >&2 exit 2 @@ -10,7 +20,8 @@ if [ ! -f $entries ]; then exit 3 fi -re="^/`basename $1`/.*/-kb/" +# we look for -kb in the last field, optionally followed by tag name +re="^/`basename $1`/.*/-kb/\(T[^/]*\)\{0,1\}$" if grep -q "$re" $entries; then exit 1 fi