feat(init): strip -<suffix> when autodetecting shell

For example bash-5.1, bash-static.
This commit is contained in:
Ville Skyttä 2021-03-01 07:49:47 +02:00
parent 3086e6e790
commit 61d702405d

View file

@ -38,6 +38,7 @@ if [ -z "$shell" ]; then
shell="${shell##-}"
shell="${shell:-$SHELL}"
shell="${shell##*/}"
shell="${shell%%-*}"
fi
root="${0%/*}/.."