SHELL bash + package bash-completion

This commit is contained in:
pvincent
2026-08-25 18:43:09 +04:00
parent 9b6e6af347
commit 49dfe9f1fc
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -54,8 +54,8 @@ function execute_miaou_lib {
}
function assert_bash {
if [[ $SHELL != "$BASH_SHELL" ]]; then
>&2 echo "you are running on SHELL=$SHELL. expectation: $BASH_SHELL"
if [[ $(basename "$SHELL") != 'bash' ]]; then
>&2 echo "MIAOU ERROR: you are running on SHELL=$SHELL rather than 'bash'!"
return 11
fi
}