tpm/scripts/update_plugin.sh

79 lines
1.8 KiB
Bash
Raw Permalink Normal View History

#!/usr/bin/env bash
# this script handles core logic of updating plugins
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2015-08-03 09:12:45 -04:00
HELPERS_DIR="$CURRENT_DIR/helpers"
2015-08-03 11:40:50 -04:00
source "$HELPERS_DIR/plugin_functions.sh"
source "$HELPERS_DIR/utility.sh"
2015-08-03 09:12:45 -04:00
if [ "$1" == "--tmux-echo" ]; then # tmux-specific echo functions
source "$HELPERS_DIR/tmux_echo_functions.sh"
else # shell output functions
source "$HELPERS_DIR/shell_echo_functions.sh"
fi
2014-08-05 13:02:42 -04:00
2015-08-03 09:12:45 -04:00
# from now on ignore first script argument
shift
2014-08-05 13:02:42 -04:00
pull_changes() {
local plugin="$1"
2015-08-03 11:40:50 -04:00
local plugin_path="$(plugin_path_helper "$plugin")"
cd "$plugin_path" &&
2015-02-08 09:38:55 -05:00
GIT_TERMINAL_PROMPT=0 git pull &&
GIT_TERMINAL_PROMPT=0 git submodule update --init --recursive
2014-08-05 13:02:42 -04:00
}
update() {
local plugin="$1" output
output=$(pull_changes "$plugin" 2>&1)
if (( $? == 0 )); then
echo_ok " \"$plugin\" update success"
echo_ok "$(echo "$output" | sed -e 's/^/ | /')"
else
echo_err " \"$plugin\" update fail"
echo_err "$(echo "$output" | sed -e 's/^/ | /')"
fi
2014-08-05 13:02:42 -04:00
}
update_all() {
echo_ok "Updating all plugins!"
echo_ok ""
2015-08-03 11:40:50 -04:00
local plugins="$(tpm_plugins_list_helper)"
for plugin in $plugins; do
2019-05-19 16:59:06 -04:00
IFS='#' read -ra plugin <<< "$plugin"
local plugin_name="$(plugin_name_helper "${plugin[0]}")"
2014-08-05 13:02:42 -04:00
# updating only installed plugins
if plugin_already_installed "$plugin_name"; then
2016-11-12 15:12:50 -05:00
update "$plugin_name" &
fi
done
2016-11-12 15:12:50 -05:00
wait
}
update_plugins() {
local plugins="$*"
for plugin in $plugins; do
2019-05-19 16:59:06 -04:00
IFS='#' read -ra plugin <<< "$plugin"
local plugin_name="$(plugin_name_helper "${plugin[0]}")"
if plugin_already_installed "$plugin_name"; then
2016-11-12 15:12:50 -05:00
update "$plugin_name" &
else
2016-11-12 15:12:50 -05:00
echo_err "$plugin_name not installed!" &
fi
done
2016-11-12 15:12:50 -05:00
wait
2014-08-05 13:02:42 -04:00
}
main() {
ensure_tpm_path_exists
if [ "$1" == "all" ]; then
update_all
else
update_plugins "$*"
fi
exit_value_helper
}
main "$*"