harfbuzz/.ci/fail.sh

13 lines
254 B
Bash
Raw Normal View History

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