A different approach

This commit is contained in:
Gabe Durazo 2019-07-22 18:44:32 -05:00 committed by GitHub
parent e227c3cda1
commit 0d2648c7f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,9 +9,15 @@ 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 test -d $x; and not contains $x $PATH
set PATH $x $PATH
if test -d $x
for i in (seq 1 (count $PATH))
if test $PATH[$i] = $x
set -e PATH[$i]
break
end
end
end
set PATH $x $PATH
end
# Add function wrapper so we can export variables