mirror of
https://github.com/tmux-plugins/tpm.git
synced 2024-11-17 18:08:48 +00:00
10 lines
199 B
Bash
Executable File
10 lines
199 B
Bash
Executable File
#!/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
|