asdf/lib/commands/command-plugin-update.bash

67 lines
2.1 KiB
Bash
Raw Normal View History

# -*- sh -*-
2015-05-17 11:20:51 -07:00
plugin_update_command() {
if [ "$#" -lt 1 ]; then
2021-04-27 02:28:24 -07:00
display_error "usage: asdf plugin-update {<name> [git-ref] | --all}"
2016-07-03 04:15:57 -07:00
exit 1
fi
local plugin_name="$1"
2021-04-27 02:28:24 -07:00
local gitref="${2}"
local plugins=
2021-04-27 02:28:24 -07:00
2015-05-20 21:31:09 -07:00
if [ "$plugin_name" = "--all" ]; then
if [ -d "$(asdf_data_dir)"/plugins ]; then
plugins=$(find "$(asdf_data_dir)"/plugins -mindepth 1 -maxdepth 1 -type d)
while IFS= read -r dir; do
2021-04-27 02:28:24 -07:00
update_plugin "$(basename "$dir")" "$dir" "$gitref" &
done <<<"$plugins"
wait
fi
2015-05-17 00:46:56 -07:00
else
2017-09-04 10:04:56 -07:00
local plugin_path
plugin_path="$(get_plugin_path "$plugin_name")"
2017-09-04 10:04:56 -07:00
check_if_plugin_exists "$plugin_name"
2019-12-30 08:48:29 -07:00
update_plugin "$plugin_name" "$plugin_path" "$gitref"
fi
}
update_plugin() {
local plugin_name=$1
local plugin_path=$2
2021-04-27 02:28:24 -07:00
plugin_remote_default_branch=$(git --git-dir "$plugin_path/.git" --work-tree "$plugin_path" ls-remote --symref origin HEAD | awk '{ sub(/refs\/heads\//, ""); print $2; exit }')
local gitref=${3:-${plugin_remote_default_branch}}
logfile=$(mktemp)
local common_git_options=(--git-dir "$plugin_path/.git" --work-tree "$plugin_path")
local prev_ref=
local post_ref=
{
asdf_run_hook "pre_asdf_plugin_update" "$plugin_name"
asdf_run_hook "pre_asdf_plugin_update_${plugin_name}"
2021-04-27 02:28:24 -07:00
printf "Updating %s to %s\\n" "$plugin_name" "$gitref"
git "${common_git_options[@]}" fetch --prune --update-head-ok origin "$gitref:$gitref"
prev_ref=$(git "${common_git_options[@]}" rev-parse --short HEAD)
post_ref=$(git "${common_git_options[@]}" rev-parse --short "${gitref}")
git "${common_git_options[@]}" -c advice.detachedHead=false checkout --force "$gitref"
if [ -f "${plugin_path}/bin/post-plugin-update" ]; then
(
export ASDF_PLUGIN_PATH=$plugin_path
export ASDF_PLUGIN_PREV_REF=$prev_ref
export ASDF_PLUGIN_POST_REF=$post_ref
"${plugin_path}/bin/post-plugin-update"
)
fi
asdf_run_hook "post_asdf_plugin_update" "$plugin_name"
asdf_run_hook "post_asdf_plugin_update_${plugin_name}"
} >"$logfile" 2>&1
cat "$logfile"
rm "$logfile"
2015-05-17 00:46:56 -07:00
}
plugin_update_command "$@"