Make this work for old versions of automake

pull/797/head
Khaled Hosny 7 years ago
parent f8077c9790
commit 4eff0fc5b8
  1. 3
      .ci/fail.sh

@ -1,7 +1,8 @@
#!/bin/bash
for f in $(find . -name '*.log' -not -name 'config.log'); do
if [[ $(tail -1 $f) = FAIL* ]]; then
last=$(tail -1 $f)
if [[ $last = FAIL* || $last = *failed* ]]; then
echo '====' $f '===='
cat $f
fi

Loading…
Cancel
Save