mirror of https://github.com/tmux-plugins/tpm
parent
a51fb24f62
commit
40ba8e58dc
@ -0,0 +1,9 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
||||
SCRIPTS_DIR="$CURRENT_DIR/../scripts" |
||||
|
||||
main() { |
||||
"$SCRIPTS_DIR/install_plugins.sh" # has correct exit code |
||||
} |
||||
main |
@ -0,0 +1,14 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
||||
SCRIPTS_DIR="$CURRENT_DIR/../scripts" |
||||
|
||||
source "$SCRIPTS_DIR/shared_functions.sh" |
||||
|
||||
main() { |
||||
reload_tmux_environment |
||||
"$SCRIPTS_DIR/install_plugins.sh" --tmux-echo >/dev/null 2>&1 |
||||
reload_tmux_environment |
||||
end_message |
||||
} |
||||
main |
Loading…
Reference in new issue