2016-04-18 00:33:14 -07:00
|
|
|
#!/usr/bin/env fish
|
|
|
|
|
2019-01-24 12:42:58 -07:00
|
|
|
set -x ASDF_DIR (dirname (status -f))
|
2018-10-31 13:12:39 -07:00
|
|
|
set -l asdf_data_dir (
|
|
|
|
if test -n "$ASDF_DATA_DIR"; echo $ASDF_DATA_DIR;
|
|
|
|
else; echo $HOME/.asdf; end)
|
2016-04-18 00:33:14 -07:00
|
|
|
|
2018-10-31 13:12:39 -07:00
|
|
|
# Add asdf to PATH
|
2019-01-24 12:42:58 -07:00
|
|
|
set -l asdf_bin_dirs $ASDF_DIR/bin $ASDF_DIR/shims $asdf_data_dir/shims
|
2016-04-18 00:33:14 -07:00
|
|
|
|
2018-10-31 13:12:39 -07:00
|
|
|
for x in $asdf_bin_dirs
|
2018-12-29 16:46:22 -07:00
|
|
|
if begin not contains $x $fish_user_paths; and test -d $x; end
|
2018-12-29 12:17:38 -07:00
|
|
|
set -gx fish_user_paths $fish_user_paths $x
|
2018-07-11 10:14:30 -07:00
|
|
|
end
|
2018-03-28 21:49:40 -07:00
|
|
|
end
|