fix: remove echo arg

This commit is contained in:
Strix 2023-10-22 17:46:14 +02:00
parent b6a24d6a42
commit ab5e035bff
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774

View file

@ -4,7 +4,7 @@ set -e
for c in tools/repo/check.d/*; do for c in tools/repo/check.d/*; do
echo "running $c..." echo "running $c..."
$c | while read line; do $c | while read line; do
echo -e "$c: $line" echo "$c: $line"
done done
done done