From 49d44f8c07149138c707ea0136f61181c209d00b Mon Sep 17 00:00:00 2001 From: pvincent Date: Mon, 24 Aug 2026 16:40:13 +0400 Subject: [PATCH] return instead of exit --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 3019e25..eaf6499 100755 --- a/install.sh +++ b/install.sh @@ -52,8 +52,8 @@ function execute_miaou_lib { } function assert_bash { - if [[ $SHELL != bash ]]; then - >&2 echo "you are running on SHELL=$SHELL. Bash expected!" + if [[ $SHELL != 'bin/bash' ]]; then + >&2 echo "you are running on SHELL=$SHELL. 'bin/bash' expected!" return 11 fi }