feat: check repo script
This commit is contained in:
parent
1cd2b290de
commit
a171a058f9
3 changed files with 34 additions and 0 deletions
12
tools/repo/check.sh
Executable file
12
tools/repo/check.sh
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#!/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
|
||||
Loading…
Add table
Add a link
Reference in a new issue