My configuration files for Debian/Ubuntu applications
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

update_plugin_prompt_handler.sh 346 B

123456789101112131415161718
  1. #!/usr/bin/env bash
  2. CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
  3. HELPERS_DIR="$CURRENT_DIR/helpers"
  4. if [ $# -eq 0 ]; then
  5. exit 0
  6. fi
  7. source "$HELPERS_DIR/tmux_echo_functions.sh"
  8. source "$HELPERS_DIR/tmux_utils.sh"
  9. main() {
  10. "$CURRENT_DIR/update_plugin.sh" --tmux-echo "$*"
  11. reload_tmux_environment
  12. end_message
  13. }
  14. main "$*"