also handle missing tput in upgrade script.
This commit is contained in:
parent
884a879562
commit
95296bb0c5
@ -1,7 +1,10 @@
|
|||||||
|
|
||||||
# Use colors, but only if connected to a terminal, and that terminal
|
# Use colors, but only if connected to a terminal, and that terminal
|
||||||
# supports them.
|
# supports them.
|
||||||
ncolors=$(tput colors)
|
tput=$(which tput)
|
||||||
|
if [ -n "$tput" ]; then
|
||||||
|
ncolors=$(tput colors)
|
||||||
|
fi
|
||||||
if [ -t 1 ] && [ -n "$ncolors" ] && [ "$ncolors" -ge 8 ]; then
|
if [ -t 1 ] && [ -n "$ncolors" ] && [ "$ncolors" -ge 8 ]; then
|
||||||
RED="$(tput setaf 1)"
|
RED="$(tput setaf 1)"
|
||||||
GREEN="$(tput setaf 2)"
|
GREEN="$(tput setaf 2)"
|
||||||
|
Loading…
Reference in New Issue
Block a user