1
0
Fork 0
mirror of synced 2024-05-27 04:21:11 -04:00
tpm/scripts/update_plugin_prompt_handler.sh

17 lines
271 B
Bash
Raw Normal View History

#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
if [ $# -eq 0]; then
exit 0
fi
source "$CURRENT_DIR/shared_functions.sh"
main() {
"$CURRENT_DIR/update_plugin.sh" --tmux-echo "$*"
reload_tmux_environment
end_message
}
main "$*"