mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
feat(init): strip -<suffix> when autodetecting shell
For example bash-5.1, bash-static.
This commit is contained in:
parent
3086e6e790
commit
61d702405d
1 changed files with 1 additions and 0 deletions
|
@ -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