harfbuzz/.ci/fail.sh

12 lines
219 B
Bash
Raw Normal View History

#!/bin/bash
for f in $(find . -name '*.log' -not -name 'config.log'); do
2018-02-15 10:47:08 +01:00
if [[ $(tail -1 $f) = FAIL* ]]; then
echo '====' $f '===='
cat $f
fi
done
2018-02-15 10:25:24 +01:00
# Intentionally exiting with non-zero.
exit 1