Merge pull request #439 from tkossak/master

fix "asdf update" on fish
This commit is contained in:
Trevor Brown 2019-01-24 15:12:40 -05:00 committed by GitHub
commit 8d4ec0e987
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,12 @@
#!/usr/bin/env fish
set -l asdf_dir (dirname (status -f))
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
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 $fish_user_paths; and test -d $x; end