12 lines
No EOL
170 B
Bash
Executable file
12 lines
No EOL
170 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
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 |