diff options
author | Josh Hoyt <josh@janrain.com> | 2006-01-07 20:03:20 +0000 |
---|---|---|
committer | Josh Hoyt <josh@janrain.com> | 2006-01-07 20:03:20 +0000 |
commit | d7beae7a884cec3ca1666657e597f4b00ae82828 (patch) | |
tree | ed305ad313089caa0a08789815e970916d3355be /admin | |
parent | bb49a3970af9923b624f55ea47a2cf2ccf158c39 (diff) | |
download | php-openid-d7beae7a884cec3ca1666657e597f4b00ae82828.zip php-openid-d7beae7a884cec3ca1666657e597f4b00ae82828.tar.gz php-openid-d7beae7a884cec3ca1666657e597f4b00ae82828.tar.bz2 |
[project @ Simplify notabs script]
Diffstat (limited to 'admin')
-rw-r--r-- | admin/notabs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/admin/notabs b/admin/notabs index 13af3c1..edb2c07 100644 --- a/admin/notabs +++ b/admin/notabs @@ -6,16 +6,12 @@ tabs=$(find ./ \( -name _darcs \) -prune -o \( -type f -a -name \*.php \) | xargs egrep -l ' ' | sort) -allowed= -if [ "$allowed" != "$tabs" ] +if [ ! -z "$tabs" ] then cat <<EOF 1>&2 Found tabs in: $tabs - -Tabs allowed in: -$allowed EOF exit 1 fi |