Procházet zdrojové kódy

rbenv-init: do not use basename for $shell

This can be done using bash directly.
pull/487/head^2
Daniel Hahler před 9 roky
rodič
revize
4ea7d0849b
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      libexec/rbenv-init

+ 2
- 1
libexec/rbenv-init Zobrazit soubor

@ -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%/*}/.."

Načítá se…
Zrušit
Uložit