neb/tools/repo/check.sh
2023-12-06 21:54:41 +01:00

14 lines
No EOL
224 B
Bash
Executable file

#!/bin/bash
set -e
set -o pipefail
[ "${SKIP_CHECK:-no}" = "yes" ] || for c in tools/repo/check.d/*; do
echo "running $c..."
$c | while read line; do
echo "$c: $line"
done
done
echo "repo is OK"
exit 0