aboutsummaryrefslogtreecommitdiff
path: root/src/infrastructure/scripts/report.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/infrastructure/scripts/report.sh')
-rwxr-xr-xsrc/infrastructure/scripts/report.sh2
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)"