diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-01-31 09:36:28 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-01-31 09:36:28 +0100 |
commit | ba424f9a191d66c5e6a864b5b5843815f5bc7daf (patch) | |
tree | e8840a93858c004825a6fdc6b579517c13b4a919 /contrib/ci | |
parent | 0b85c6cc4aa9f4013281e1791d3dc999312769ec (diff) |
output full log
Diffstat (limited to 'contrib/ci')
-rwxr-xr-x | contrib/ci/jobs/2-test/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/ci/jobs/2-test/test.sh b/contrib/ci/jobs/2-test/test.sh index 3681f51cb..6566e7e08 100755 --- a/contrib/ci/jobs/2-test/test.sh +++ b/contrib/ci/jobs/2-test/test.sh @@ -31,7 +31,7 @@ print_logs() for FAILURE in $(grep '^FAIL:' ${i} | cut -d' ' -f2) do echo "Printing ${FAILURE}.log" - tail "$(dirname $i)/${FAILURE}.log" + cat "$(dirname $i)/${FAILURE}.log" done done } |