Fix issue with Fish shell shim loading script

This commit is contained in:
Sasha Friedenberg 2018-07-11 13:14:30 -04:00 committed by Trevor Brown
parent a9f3d6ca1f
commit 3a4b9042e3

View File

@ -5,7 +5,9 @@ set -l asdf_dir (dirname (status -f))
# we get an ugly warning when setting the path if shims does not exist
mkdir -p $asdf_dir/shims
if not contains $asdf_dir/{bin,shims} $PATH
and test -d $asdf/{bin,shims}
set -gx PATH $asdf_dir/{bin,shims} $PATH
for x in $asdf_dir/{bin,shims}
if not contains $x $PATH
and test -d $x
set -gx PATH $x $PATH
end
end