Skip to content

Commit

Permalink
travis: Don't produce config.log output after failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
mithro committed Sep 23, 2018
1 parent c507c86 commit aaa30ac
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .travis/after_failure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ end_section "failure.tail"

$SPACER

COUNT=0
for i in $(find $BASE_PATH -name config.log); do
start_section "failure.log.$COUNT" "${RED}Failure output $i...${NC}"
cat $i
end_section "failure.log.$COUNT"
COUNT=$((COUNT+1))
done

$SPACER
#COUNT=0
#for i in $(find $BASE_PATH -name config.log); do
# start_section "failure.log.$COUNT" "${RED}Failure output $i...${NC}"
# cat $i
# end_section "failure.log.$COUNT"
# COUNT=$((COUNT+1))
#done
#
#$SPACER

start_section "failure.log.full" "${RED}Failure output.log...${NC}"
cat /tmp/output.log
Expand Down

0 comments on commit aaa30ac

Please sign in to comment.