diff options
-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 |