Browse Source

return instead of exit

main
pvincent 2 weeks ago
parent
commit
63f169af92
  1. 2
      install.sh

2
install.sh

@ -54,7 +54,7 @@ function execute_miaou_lib {
function assert_bash { function assert_bash {
if [[ $SHELL != bash ]]; then if [[ $SHELL != bash ]]; then
>&2 echo "you are running on SHELL=$SHELL. Bash expected!" >&2 echo "you are running on SHELL=$SHELL. Bash expected!"
exit 98
return 98
fi fi
} }

Loading…
Cancel
Save