From 23e40963bad17075e1d7823a2d6928ee6eab1aa6 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Fri, 1 Feb 2019 17:22:35 +0100 Subject: [PATCH] Fix bug --- zsh/update.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/update.zsh b/zsh/update.zsh index c69b793..5f1854b 100644 --- a/zsh/update.zsh +++ b/zsh/update.zsh @@ -50,7 +50,7 @@ _check_date() { if [ "$new_date" != "$old_date" ]; then _sentence not_updated - elif [ "$UPDATE_CHECK_ALWAYS" == "true" ]; then + elif [ "$UPDATE_CHECK_ALWAYS" = "true" ]; then _sentence updated fi }