12 lines
173 B
Bash
12 lines
173 B
Bash
|
#!/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
|