mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-06 15:30:40 +01:00
Use $commands[] to check for command existence
This commit is contained in:
@@ -19,7 +19,8 @@ then
|
||||
colorls -G -d . &>/dev/null 2>&1 && alias ls='colorls -G'
|
||||
else
|
||||
# For GNU ls, we use the default ls color theme. They can later be overwritten by themes.
|
||||
type dircolors >/dev/null 2>&1 && eval "$(dircolors)"
|
||||
(( $+commands[dircolors] )) && eval "$(dircolors)"
|
||||
|
||||
ls --color -d . &>/dev/null 2>&1 && alias ls='ls --color=tty' || alias ls='ls -G'
|
||||
fi
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user