mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-06 15:30:40 +01:00
installer: allow for tput errors
tput may throw errors on invalid $TERM values, for example. This shorthand syntax allows for that as well as for if tput doesn't exist.
This commit is contained in:
@@ -52,11 +52,7 @@ error() {
|
||||
|
||||
# Set up color sequences
|
||||
setup_color() {
|
||||
if command_exists tput; then
|
||||
ncolors=$(tput colors)
|
||||
else
|
||||
ncolors=0
|
||||
fi
|
||||
ncolors=$(tput colors 2>/dev/null) || ncolors=0
|
||||
|
||||
# Only use colors if connected to a terminal that supports them
|
||||
if [ -t 1 ] && [ $ncolors -ge 8 ]; then
|
||||
|
||||
Reference in New Issue
Block a user