tmux-gruvbox/tests/run_all_linux_tests.sh
2024-09-21 10:50:10 +02:00

13 lines
243 B
Bash
Executable file

#!/usr/bin/env bash
CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
main() {
set -e # exit on error
_files=$(find "$CURRENT_DIR" -name "test_linux_*" -type f)
for test in $_files; do
bash -c "$test"
done
}
main "$@"