Moving to new approach that uses CVS entries to determine text/binary state of file.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40178 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
18
distrib/scripts/is_text.sh
Executable file
18
distrib/scripts/is_text.sh
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
if [ $# != 1 ]; then
|
||||
echo "Usage: $0 <file>" >&2
|
||||
exit 2
|
||||
fi
|
||||
|
||||
entries=`dirname $1`/CVS/Entries
|
||||
if [ ! -f $entries ]; then
|
||||
echo "CVS entries file \"$entries\" not found." >&2
|
||||
exit 3
|
||||
fi
|
||||
|
||||
re="^/`basename $1`/.*/-kb/\$"
|
||||
if grep -q "$re" $entries; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
exit 0
|
Reference in New Issue
Block a user