mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 09:38:16 -07:00
237a5ab59e
Referred a couple other version managers. The advantage is not having to maintain the scripts for other shells (bash comes by default everywhere I've seen).
6 lines
173 B
Bash
6 lines
173 B
Bash
#!/usr/bin/env bash
|
|
|
|
current_script_path=${BASH_SOURCE[0]}
|
|
asdf_dir=$(cd $(dirname $current_script_path); echo $(pwd))
|
|
export PATH="${asdf_dir}/bin:${asdf_dir}/shims:$PATH"
|