1
0
Fork 0
mirror of synced 2024-05-24 11:10:29 -04:00
tpm/scripts/update_plugin_prompt_handler.sh
2015-08-02 12:56:44 +02:00

17 lines
271 B
Bash
Executable file

#!/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 "$*"