mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 20:30:09 +00:00
fix bug for check zsh (#6798)
This commit is contained in:
parent
c4981bae0a
commit
8f0ff4bb63
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ main() {
|
||||||
# which may fail on systems lacking tput or terminfo
|
# which may fail on systems lacking tput or terminfo
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
if command -v zsh >/dev/null 2>&1; then
|
if ! command -v zsh >/dev/null 2>&1; then
|
||||||
printf "${YELLOW}Zsh is not installed!${NORMAL} Please install zsh first!\n"
|
printf "${YELLOW}Zsh is not installed!${NORMAL} Please install zsh first!\n"
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue