Shell: Fix ksh on BSD, closes #539

This commit is contained in:
Dylan Araps 2016-12-16 12:49:59 +11:00
parent 09de2155f7
commit bce34c8e40
1 changed files with 2 additions and 2 deletions

View File

@ -500,9 +500,10 @@ get_shell() {
case "${SHELL##*/}" in case "${SHELL##*/}" in
"bash") shell+="${BASH_VERSION/-*}" ;; "bash") shell+="${BASH_VERSION/-*}" ;;
"mksh") "mksh" | "ksh")
shell+="$("$SHELL" -c 'printf "%s" "$KSH_VERSION"')" shell+="$("$SHELL" -c 'printf "%s" "$KSH_VERSION"')"
shell="${shell/ * KSH}" shell="${shell/ * KSH}"
shell="${shell/version}"
;; ;;
*) *)
@ -513,7 +514,6 @@ get_shell() {
# Remove unwanted info # Remove unwanted info
shell="${shell/, version}" shell="${shell/, version}"
shell="${shell/version * sh/ksh}"
shell="${shell/xonsh\//xonsh }" shell="${shell/xonsh\//xonsh }"
shell="${shell/options*}" shell="${shell/options*}"
shell="${shell/\(*\)}" shell="${shell/\(*\)}"