return instead of exit

This commit is contained in:
pvincent
2026-08-24 16:26:55 +04:00
parent 96746c42a1
commit 63f169af92
+1 -1
View File
@@ -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
}