Merge pull request #731 from blueyed/init-no-basename-for-shell

rbenv-init: do not use basename for $shell
This commit is contained in:
Mislav Marohnić 2015-10-10 18:33:52 +02:00
commit c43928a8e4

View file

@ -25,7 +25,8 @@ if [ -z "$shell" ]; then
shell="$(ps c -p "$PPID" -o 'ucomm=' 2>/dev/null || true)"
shell="${shell##-}"
shell="${shell%% *}"
shell="$(basename "${shell:-$SHELL}")"
shell="${shell:-$SHELL}"
shell="${shell##*/}"
fi
root="${0%/*}/.."