Fixing check for terminal width
authorFrank Terbeck <ft@grml.org>
Sat, 15 Sep 2007 11:45:33 +0000 (13:45 +0200)
committerFrank Terbeck <ft@grml.org>
Sat, 15 Sep 2007 11:45:33 +0000 (13:45 +0200)
etc/grml/lsb-functions

index 304ce06..d2df8c9 100644 (file)
@@ -789,10 +789,13 @@ case "$*" in
        [ -n "${EBUILD}" ] && COLS=80
 esac
 
+# Setup COLS and ENDCOL so eend can line up the [ ok ]
+# width of [ ok ] == 7
 if [ "${COLS}" -eq 0 ] ; then
-       # Setup COLS and ENDCOL so eend can line up the [ ok ]
        COLS="$(stty size 2>/dev/null | cut -d' ' -f2)"
-       [ "${COLS}" -gt 0 ] || COLS=80          # width of [ ok ] == 7
+       if [ -z "${COLS}" ] || [ "${COLS}" -gt 0 ] ; then
+               COLS=80
+       fi
 fi
 
 if [ "${RC_ENDCOL}" = "yes" ]; then