mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-10 14:24:28 +00:00
15 lines
375 B
Bash
Executable file
15 lines
375 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
# go to script root directory
|
|
cd "$(dirname "$0")" || exit 1
|
|
|
|
# go through top level folders and trigger the tests in the subfolders
|
|
readarray -t folders < <(find . -maxdepth 2 -mindepth 2 -name test.sh -printf '%h\n')
|
|
for folder in "${folders[@]}"; do
|
|
cd "$folder"
|
|
echo "Starting ${folder} Tests"
|
|
bash ./test.sh
|
|
cd ..
|
|
done
|