mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 01:28:17 -07:00
16 lines
368 B
Fish
16 lines
368 B
Fish
#!/usr/bin/env fish
|
|
|
|
set -x ASDF_DIR (dirname (status -f))
|
|
set -l asdf_data_dir (
|
|
if test -n "$ASDF_DATA_DIR"; echo $ASDF_DATA_DIR;
|
|
else; echo $HOME/.asdf; end)
|
|
|
|
# Add asdf to PATH
|
|
set -l asdf_bin_dirs $ASDF_DIR/bin $ASDF_DIR/shims $asdf_data_dir/shims
|
|
|
|
for x in $asdf_bin_dirs
|
|
if begin not contains $x $PATH; and test -d $x; end
|
|
set PATH $x $PATH
|
|
end
|
|
end
|