mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-14 02:20:00 -04:00
Add back the "| cat" so that output files don't get truncated
This commit is contained in:
parent
37a915120f
commit
7d6972ff24
1 changed files with 6 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue