mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 09:38:16 -07:00
8 lines
216 B
Bash
8 lines
216 B
Bash
#!/usr/bin/env sh
|
|
|
|
#TODO check for ${BASH_SOURCE[0]} or use $0
|
|
|
|
current_script_path=${BASH_SOURCE[0]}
|
|
asdf_dir=$(cd $(dirname $current_script_path); echo $(pwd))
|
|
export PATH="${asdf_dir}/bin:${asdf_dir}/shims:$PATH"
|