From 96e473a1d65cf3a093be2c742eea427706f18c01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Cornell=C3=A0?= Date: Sun, 26 Dec 2021 19:24:19 +0100 Subject: [PATCH] fix(random): fix `ZSH_THEME_RANDOM_QUIET` check (#10534) BREAKING CHANGE: For consistency, `ZSH_THEME_RANDOM_QUIET` now needs to be `true` if you want to silence the "Random theme loaded" message in the `random` theme. The wiki specified that 1 or true was valid, while the code just checked whether it was set to any value. Being more strict makes sure that we're consistent with the rest of the Settings. Fixes #10534 --- themes/random.zsh-theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/random.zsh-theme b/themes/random.zsh-theme index f0b8e5c18..173d5b33f 100644 --- a/themes/random.zsh-theme +++ b/themes/random.zsh-theme @@ -42,6 +42,6 @@ else return 1 fi -if [[ -z "$ZSH_THEME_RANDOM_QUIET" ]]; then +if [[ "$ZSH_THEME_RANDOM_QUIET" = true ]]; then echo "[oh-my-zsh] Random theme '${RANDOM_THEME}' loaded" fi