neb/tools/repo/check.sh

12 lines
173 B
Bash
Raw Normal View History

2023-10-22 17:45:03 +02:00
#!/bin/sh
set -e
for c in tools/repo/check.d/*; do
echo "running $c..."
$c | while read line; do
echo -e "$c: $line"
done
done
echo "repo is OK"
exit 0