From d0e2b09e01316514364d1be9a516b81c364cc628 Mon Sep 17 00:00:00 2001 From: Kossak Date: Thu, 24 Jan 2019 20:42:58 +0100 Subject: [PATCH] fix "asdf update" on fish --- asdf.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/asdf.fish b/asdf.fish index 26c59d6b..afe5c0e4 100644 --- a/asdf.fish +++ b/asdf.fish @@ -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