mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 09:38:16 -07:00
9 lines
206 B
Fish
9 lines
206 B
Fish
#!/usr/bin/env fish
|
|
|
|
set -l asdf_dir (dirname (status -f))
|
|
|
|
# we get an ugly warning when setting the path if shims does not exist
|
|
mkdir -p $asdf_dir/shims
|
|
|
|
set -xg PATH $asdf_dir/bin $asdf_dir/shims $PATH
|