From 63f169af925af505574b47068c4900dfd03b0423 Mon Sep 17 00:00:00 2001 From: pvincent Date: Mon, 24 Aug 2026 16:26:55 +0400 Subject: [PATCH] return instead of exit --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 7a40242..e19a94c 100755 --- a/install.sh +++ b/install.sh @@ -54,7 +54,7 @@ function execute_miaou_lib { function assert_bash { if [[ $SHELL != bash ]]; then >&2 echo "you are running on SHELL=$SHELL. Bash expected!" - exit 98 + return 98 fi }