asdf/asdf.fish
mig4 538777de95
Fix fish shell init snippet
- add `bin` and `shims` directories from asdf installation to PATH
- add `shims` directory from `$ASDF_DATA_DIR` (default `$HOME/.asdf`) to
  PATH
- don't create directories in init script (directories are only added to
  PATH if they exist, besides there is no warning when a directory does
  not exist (perhaps it was a bug that was fixed))

This brings the fish snippet closer to the one for sh.
2018-11-01 22:12:09 +00:00

16 lines
372 B
Fish

#!/usr/bin/env fish
set -l 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 -gx PATH $x $PATH
end
end