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

43 lines
1.3 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}"
2015-05-20 21:31:09 -07:00
if [ "$plugin_name" = "--all" ]; then
if [ -d "$(asdf_data_dir)"/plugins ]; then
2021-05-19 02:43:16 -07:00
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" &
2021-05-19 02:01:36 -07:00
done
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)
{
2021-04-27 02:28:24 -07:00
printf "Updating %s to %s\\n" "$plugin_name" "$gitref"
git --git-dir "$plugin_path/.git" --work-tree "$plugin_path" fetch --prune --update-head-ok origin "$gitref:$gitref"
git --git-dir "$plugin_path/.git" --work-tree "$plugin_path" -c advice.detachedHead=false checkout --force "$gitref"
} >"$logfile" 2>&1
cat "$logfile"
rm "$logfile"
2015-05-17 00:46:56 -07:00
}
plugin_update_command "$@"