diff options
Diffstat (limited to 'eazel-engine/check-data.sh')
-rwxr-xr-x | eazel-engine/check-data.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/eazel-engine/check-data.sh b/eazel-engine/check-data.sh deleted file mode 100755 index 74637d9..0000000 --- a/eazel-engine/check-data.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -# script to check that all image files are listed in the correct -# Makefile.am - -images=`grep \.png gtkrc.in | sed -e 's/^.*image *= *"\(.*\)".*$/\1/'` - -missing=no - -for f in $images; do - fgrep $f data/Makefile.am >/dev/null \ - || { missing=yes; echo "data/Makefile.am is missing $f"; } -done - -if [ $missing != no ]; then - exit 1 -else - exit 0 -fi |