mirror of
https://github.com/tmux-plugins/tpm.git
synced 2026-09-15 18:06:23 -04: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
|