summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.tools/pngcheck.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.tools/pngcheck.sh b/.tools/pngcheck.sh
index a95225e8..8955b26e 100755
--- a/.tools/pngcheck.sh
+++ b/.tools/pngcheck.sh
@@ -11,7 +11,7 @@ export LOG2="pngcheck2.log"
rm ${LOG1}
rm ${LOG2}
-find . -type f -name "*.png" -exec pngcheck {} \; >${LOG1}
+find -H . -type f -name "*.png" -exec pngcheck {} \; >${LOG1}
grep -v "32-bit RGB+alpha, non-interlaced, " ${LOG1} >${LOG2}
export DATA=$(cat pngcheck2.log)