Files
dokku/plugins/plugin/subcommands/update

20 lines
524 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
set -eo pipefail
[[ $DOKKU_TRACE ]] && set -x
2018-04-27 12:33:33 -04:00
source "$PLUGIN_AVAILABLE_PATH/plugin/internal-functions"
cmd-plugin-update() {
2016-03-08 15:30:34 -05:00
declare desc="updates plugin to optional committish and calls update plugin trigger via command line"
declare cmd="plugin:update"
[[ "$1" == "$cmd" ]] && shift 1
declare PLUGIN="$1" PLUGIN_COMMITTISH="$2"
if [[ -n "$PLUGIN" ]]; then
plugn update "$PLUGIN" "$PLUGIN_COMMITTISH"
fi
plugn trigger update
plugin_prime_bash_completion
}
cmd-plugin-update "$@"