From 7eeb249722a3c6abc8d17015f7385dc32380a7ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Let?= Date: Wed, 2 Oct 2019 19:43:50 +0200 Subject: [PATCH] Zsh compatibility patch --- scripts/shellrc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/shellrc.sh b/scripts/shellrc.sh index cfb1666..126008b 100644 --- a/scripts/shellrc.sh +++ b/scripts/shellrc.sh @@ -165,7 +165,7 @@ __resh_precmd() { echo "RESH WARNING: You probably just updated RESH - PLEASE RESTART OR RELOAD THIS TERMINAL SESSION (resh revision: $(resh-collect -revision); resh revision of this terminal session: ${__RESH_REVISION})" fi fi - if [ "$__RESH_VERSION" == $(resh-collect -version) ] && [ "$__RESH_REVISION" == $(resh-collect -revision) ]; then + if [ "$__RESH_VERSION" = $(resh-collect -version) ] && [ "$__RESH_REVISION" = $(resh-collect -revision) ]; then resh-collect -requireVersion "$__RESH_VERSION" \ -requireRevision "$__RESH_REVISION" \ -cmdLine "$__RESH_CMDLINE" \