mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 01:28:17 -07:00
Check for bash before mksh
This commit is contained in:
parent
f2674374b0
commit
6523971b40
6
asdf.sh
6
asdf.sh
@ -5,10 +5,10 @@
|
|||||||
# For Bash, ${BASH_SOURCE[0]} will be used to obtain this script's path.
|
# For Bash, ${BASH_SOURCE[0]} will be used to obtain this script's path.
|
||||||
# For Zsh and others, $0 (the path to the shell or script) will be used.
|
# For Zsh and others, $0 (the path to the shell or script) will be used.
|
||||||
_under="$_"
|
_under="$_"
|
||||||
if [[ "$_under" == *".sh" ]]; then
|
if [ "${BASH_SOURCE[0]}" != "" ]; then
|
||||||
current_script_path="$_under"
|
|
||||||
elif [ "${BASH_SOURCE[0]}" != "" ]; then
|
|
||||||
current_script_path="${BASH_SOURCE[0]}"
|
current_script_path="${BASH_SOURCE[0]}"
|
||||||
|
elif [[ "$_under" == *".sh" ]]; then
|
||||||
|
current_script_path="$_under"
|
||||||
else
|
else
|
||||||
current_script_path="$0"
|
current_script_path="$0"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user