mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 01:28:17 -07:00
Update fish_user_paths only if it is defined
fish_user_paths variable is prepended to $PATH automatically. Some people set fish_user_paths, while others set PATH. It will be better to test if fish_user_paths is set, and prepend it if it is, while just prepending to PATH otherwise.
This commit is contained in:
parent
d9e2d567f8
commit
19c6077883
@ -9,7 +9,11 @@ set -l asdf_data_dir (
|
||||
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
|
||||
if begin not contains $x $PATH; and test -d $x; end
|
||||
if set -q fish_user_paths
|
||||
set -gx fish_user_paths $fish_user_paths $x
|
||||
else
|
||||
set PATH $PATH $x
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user