fix(random): fix negated logic in ZSH_THEME_RANDOM_QUIET

This commit is contained in:
Marc Cornellà 2021-12-28 11:04:13 +01:00
parent 8cb53ba692
commit 634296be3c
No known key found for this signature in database
GPG Key ID: 0314585E776A9C1B

View File

@ -42,6 +42,6 @@ else
return 1 return 1
fi fi
if [[ "$ZSH_THEME_RANDOM_QUIET" = true ]]; then if [[ "$ZSH_THEME_RANDOM_QUIET" != true ]]; then
echo "[oh-my-zsh] Random theme '${RANDOM_THEME}' loaded" echo "[oh-my-zsh] Random theme '${RANDOM_THEME}' loaded"
fi fi