asdf/lib/commands/shim-exec.sh
2019-03-26 17:36:08 +00:00

31 lines
694 B
Bash

shim_exec_command() {
local shim_name
shim_name=$(basename "$1")
local shim_args=("${@:2}")
if [ -z "$shim_name" ]; then
echo "usage: asdf exec <command>"
exit 1
fi
exec_shim() {
local plugin_name="$1"
local version="$2"
local executable_path="$3"
if [ ! -x "$executable_path" ]; then
echo "No ${shim_name} executable found for ${plugin_name} ${version}" >&2
exit 2
fi
asdf_run_hook "pre_${plugin_name}_${shim_name}" "${shim_args[@]}"
pre_status=$?
if [ "$pre_status" -ne 0 ]; then
return "$pre_status"
fi
exec "$executable_path" "${shim_args[@]}"
}
with_shim_executable "$shim_name" exec_shim || exit $?
}