mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
14 lines
132 B
Bash
Executable File
14 lines
132 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
>/failed
|
|
|
|
for t in ${0%.sh}.*.sh; do
|
|
echo "Running $t"; ./$t
|
|
done
|
|
|
|
touch /testok
|
|
rm /failed
|