diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/infrastructure/scripts/report.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/infrastructure/scripts/report.sh b/src/infrastructure/scripts/report.sh index 11ddc42..acb6b7f 100755 --- a/src/infrastructure/scripts/report.sh +++ b/src/infrastructure/scripts/report.sh @@ -193,7 +193,7 @@ done PASS='✅' # ✅ WARN='🐌' # 🐌 FAIL='❌' # ❌ - for f in $(find data/ -type f | LANG=C.UTF-8 sort -r); do + find data/ -type f | LANG=C.UTF-8 sort -r | while read -r f; do STATUS="$( grep '^status ' "$f" | cut -d' ' -f2- | esc)" SHA="$( grep '^sha ' "$f" | cut -d' ' -f2- | esc)" FILENAME="$(grep '^filename ' "$f" | cut -d' ' -f2- | esc)" |