Shell: Fix shell version on bash 3
This commit is contained in:
parent
32c4b00bfd
commit
bade83d5d5
4
neofetch
4
neofetch
|
@ -525,7 +525,7 @@ get_shell() {
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [[ "$shell_version" == "on" ]]; then
|
if [[ "$shell_version" == "on" ]]; then
|
||||||
case "${SHELL##*/}" in
|
case "${shell_name:=${SHELL##*/}}" in
|
||||||
"bash") shell+="${BASH_VERSION/-*}" ;;
|
"bash") shell+="${BASH_VERSION/-*}" ;;
|
||||||
"sh" | "ash" | "dash") ;;
|
"sh" | "ash" | "dash") ;;
|
||||||
|
|
||||||
|
@ -537,7 +537,7 @@ get_shell() {
|
||||||
|
|
||||||
*)
|
*)
|
||||||
shell+="$("$SHELL" --version 2>&1)"
|
shell+="$("$SHELL" --version 2>&1)"
|
||||||
shell="${shell/ ${SHELL##*/}}"
|
shell="${shell/ "${shell_name}"}"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Reference in New Issue