2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

Add back the "| cat" so that output files don't get truncated

This commit is contained in:
Evan Hunt
2011-08-23 22:52:58 +00:00
parent 37a915120f
commit 7d6972ff24

View File

@@ -6,7 +6,10 @@ export PATH
if [ -n "@ATFBIN@" ]
then
atf-run > atf.out
status=$?
atf-report < atf.out
[ $status -eq 0 ] && rm -f atf.out
status=$?
# | cat is there to force non-fancy output
atf-report < atf.out | cat
[ $status -eq 0 ] && rm -f atf.out
fi