mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 01:28:17 -07:00
Check if source or dot operator is used
This commit is contained in:
parent
9e3e0a64ef
commit
32c5c1a858
7
asdf.sh
7
asdf.sh
@ -1,5 +1,10 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
current_script_path=${BASH_SOURCE[0]}
|
if [ "${BASH_SOURCE[0]}" != "" ]; then
|
||||||
|
current_script_path=${BASH_SOURCE[0]}
|
||||||
|
else
|
||||||
|
current_script_path=$0
|
||||||
|
fi
|
||||||
|
|
||||||
asdf_dir=$(cd $(dirname $current_script_path); echo $(pwd))
|
asdf_dir=$(cd $(dirname $current_script_path); echo $(pwd))
|
||||||
export PATH="${asdf_dir}/bin:${asdf_dir}/shims:$PATH"
|
export PATH="${asdf_dir}/bin:${asdf_dir}/shims:$PATH"
|
||||||
|
Loading…
Reference in New Issue
Block a user