Jakobus Schürz
d2f0657629
and use the same pathes for vim plugin repos on git.schuerz.at as on github.com
17 lines
438 B
Bash
Executable file
17 lines
438 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# This file is used to run "tmux-test" framework tests.
|
|
|
|
# "setup" script is needed to run the tests, but it overrides some working dir
|
|
# files. To address that, "setup" is run before the tests and its actions are
|
|
# undone after.
|
|
|
|
main() {
|
|
git clone https://github.com/tmux-plugins/tmux-test lib/tmux-test
|
|
lib/tmux-test/setup
|
|
./run_tests
|
|
local exit_value=$?
|
|
lib/tmux-test/setup "undo"
|
|
exit "$exit_value"
|
|
}
|
|
main
|