Commit 6c08286c authored by Marc Cornellà's avatar Marc Cornellà
Browse files

Use `$commands[]` to check for command existence

parent efa7c7b7
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment