Browse Source

return instead of exit

main
pvincent 2 weeks ago
parent
commit
49d44f8c07
  1. 4
      install.sh

4
install.sh

@ -52,8 +52,8 @@ function execute_miaou_lib {
} }
function assert_bash { 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 return 11
fi fi
} }

Loading…
Cancel
Save