mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-22 13:33:56 +03:00
14 lines
193 B
Bash
Executable File
14 lines
193 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
: >/failed
|
|
|
|
for t in "${0%.sh}".*.sh; do
|
|
echo "Running $t"; ./"$t"
|
|
done
|
|
|
|
touch /testok
|
|
rm /failed
|