mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-17 19:30:10 +00:00
fix(colorize): check if $ZSH_COLORIZE_TOOL exists (#11325)
This commit is contained in:
parent
9f77cb29d7
commit
23de5d9528
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ colorize_check_requirements() {
|
||||||
if [[ ${available_tools[(Ie)$ZSH_COLORIZE_TOOL]} -eq 0 ]]; then
|
if [[ ${available_tools[(Ie)$ZSH_COLORIZE_TOOL]} -eq 0 ]]; then
|
||||||
echo "ZSH_COLORIZE_TOOL '$ZSH_COLORIZE_TOOL' not recognized. Available options are 'pygmentize' and 'chroma'." >&2
|
echo "ZSH_COLORIZE_TOOL '$ZSH_COLORIZE_TOOL' not recognized. Available options are 'pygmentize' and 'chroma'." >&2
|
||||||
return 1
|
return 1
|
||||||
elif (( $+commands["$ZSH_COLORIZE_TOOL"] )); then
|
elif ! (( $+commands[$ZSH_COLORIZE_TOOL] )); then
|
||||||
echo "Package '$ZSH_COLORIZE_TOOL' is not installed!" >&2
|
echo "Package '$ZSH_COLORIZE_TOOL' is not installed!" >&2
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue