Shell: Fix ksh on BSD, closes #539
This commit is contained in:
parent
09de2155f7
commit
bce34c8e40
4
neofetch
4
neofetch
|
@ -500,9 +500,10 @@ get_shell() {
|
|||
case "${SHELL##*/}" in
|
||||
"bash") shell+="${BASH_VERSION/-*}" ;;
|
||||
|
||||
"mksh")
|
||||
"mksh" | "ksh")
|
||||
shell+="$("$SHELL" -c 'printf "%s" "$KSH_VERSION"')"
|
||||
shell="${shell/ * KSH}"
|
||||
shell="${shell/version}"
|
||||
;;
|
||||
|
||||
*)
|
||||
|
@ -513,7 +514,6 @@ get_shell() {
|
|||
|
||||
# Remove unwanted info
|
||||
shell="${shell/, version}"
|
||||
shell="${shell/version * sh/ksh}"
|
||||
shell="${shell/xonsh\//xonsh }"
|
||||
shell="${shell/options*}"
|
||||
shell="${shell/\(*\)}"
|
||||
|
|
Reference in New Issue