mirror of
https://github.com/pyenv/pyenv.git
synced 2026-09-10 15:46:17 -04:00
feat(init): strip -<suffix> when autodetecting shell
For example bash-5.1, bash-static.
This commit is contained in:
parent
d604acb78a
commit
45951d2cbb
|
|
@ -38,6 +38,7 @@ if [ -z "$shell" ]; then
|
|||
shell="${shell##-}"
|
||||
shell="${shell:-$SHELL}"
|
||||
shell="${shell##*/}"
|
||||
shell="${shell%%-*}"
|
||||
fi
|
||||
|
||||
root="${0%/*}/.."
|
||||
|
|
|
|||
Loading…
Reference in a new issue