tpm/scripts/update_plugin.sh

69 lines
1.5 KiB
Bash
Raw 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"
source "$CURRENT_DIR/shared_functions.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"
local plugin_path="$(shared_plugin_path "$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"
echo_ok "Updating \"$plugin\""
2014-08-05 13:02:42 -04:00
$(pull_changes "$plugin" > /dev/null 2>&1) &&
echo_ok " \"$plugin\" update success" ||
echo_err " \"$plugin\" update fail"
2014-08-05 13:02:42 -04:00
}
update_all() {
echo_ok "Updating all plugins!"
echo_ok ""
local plugins="$(shared_get_tpm_plugins_list)"
for plugin in $plugins; do
2014-08-05 13:02:42 -04:00
local plugin_name="$(shared_plugin_name "$plugin")"
# updating only installed plugins
if plugin_already_installed "$plugin_name"; then
update "$plugin_name"
fi
done
}
update_plugins() {
local plugins="$*"
for plugin in $plugins; do
local plugin_name="$(shared_plugin_name "$plugin")"
if plugin_already_installed "$plugin_name"; then
update "$plugin_name"
else
echo_err "$plugin_name not installed!"
fi
done
2014-08-05 13:02:42 -04:00
}
main() {
if [ "$1" == "all" ]; then
update_all
else
update_plugins "$*"
fi
exit_value_helper
}
main "$*"