asdf/bin/private/asdf-exec
2020-09-22 08:27:52 +10:00

16 lines
418 B
Bash
Executable File

#!/usr/bin/env bash
# remove this asdf-exec file when releasing >=0.6.5
printf "asdf is self upgrading shims to new asdf exec ...\\n"
asdf_dir="$(dirname "$(dirname "$(dirname "$0")")")"
# shellcheck source=lib/utils.bash
source "$asdf_dir/lib/utils.bash"
rm "$(asdf_data_dir)"/shims/*
"$asdf_dir"/bin/asdf reshim
shim_name=$(basename "$2")
printf "asdf: now running %s\\n" "$shim_name"
exec "$shim_name" "${@:3}"