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))
|
2018-10-31 13:12:39 -07:00
|
|
|
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
|
|
|
|
2018-10-31 13:12:39 -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
|
|
|
|
2018-10-31 13:12:39 -07:00
|
|
|
for x in $asdf_bin_dirs
|
2019-02-03 02:17:18 -07:00
|
|
|
if begin not contains $x $PATH; and test -d $x; end
|
2019-03-17 23:04:13 -07:00
|
|
|
set PATH $x $PATH
|
2018-07-11 10:14:30 -07:00
|
|
|
end
|
2018-03-28 21:49:40 -07:00
|
|
|
end
|
2019-03-09 10:30:31 -07:00
|
|
|
|
|
|
|
# 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
|