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.
This commit is contained in:
mig4 2018-10-31 20:12:39 +00:00
parent e176697dc0
commit 538777de95
No known key found for this signature in database
GPG Key ID: 6CD3E1B61579CB43

View File

@ -1,13 +1,15 @@
#!/usr/bin/env fish #!/usr/bin/env fish
set -l asdf_data_dir (dirname (status -f)) 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)
# we get an ugly warning when setting the path if shims does not exist # Add asdf to PATH
mkdir -p $asdf_data_dir/shims set -l asdf_bin_dirs $asdf_dir/bin $asdf_dir/shims $asdf_data_dir/shims
for x in $asdf_data_dir/{bin,shims} for x in $asdf_bin_dirs
if not contains $x $PATH if begin not contains $x $PATH; and test -d $x; end
and test -d $x
set -gx PATH $x $PATH set -gx PATH $x $PATH
end end
end end