asdf/asdf.fish

31 lines
723 B
Fish
Raw Normal View History

2016-04-18 00:33:14 -07:00
#!/usr/bin/env fish
2019-01-24 12:42:58 -07:00
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)
2016-04-18 00:33:14 -07:00
# Add asdf to PATH
2019-01-24 12:42:58 -07:00
set -l asdf_bin_dirs $ASDF_DIR/bin $ASDF_DIR/shims $asdf_data_dir/shims
2016-04-18 00:33:14 -07:00
for x in $asdf_bin_dirs
if begin not contains $x $PATH; and test -d $x; end
2019-03-17 23:04:13 -07:00
set PATH $x $PATH
end
end
# Add function wrapper so we can export variables
function asdf
set command $argv[1]
set -e argv[1]
switch "$command"
case "shell"
# eval commands that need to export variables
source (env ASDF_SHELL=fish asdf "sh-$command" $argv | psub)
case '*'
# forward other commands to asdf script
command asdf "$command" $argv
end
end