travis: Fix error path

Without a proper separator, all commands in the error path
end up being interpreted as a single command, which is not
what we want.

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
Andrea Bolognani 2018-06-14 18:23:47 +02:00
parent aa3df9518d
commit a053cd5be2

View File

@ -52,9 +52,9 @@ env:
make -j3 syntax-check && make -j3 syntax-check &&
make -j3 distcheck DISTCHECK_CONFIGURE_FLAGS=\"\$DISTCHECK_CONFIGURE_FLAGS\" || make -j3 distcheck DISTCHECK_CONFIGURE_FLAGS=\"\$DISTCHECK_CONFIGURE_FLAGS\" ||
( (
echo '=== LOG FILE(S) START ===' echo '=== LOG FILE(S) START ===';
find -name test-suite.log | xargs cat find -name test-suite.log | xargs cat;
echo '=== LOG FILE(S) END ===' echo '=== LOG FILE(S) END ===';
exit 1 exit 1
) )
" "
@ -68,9 +68,9 @@ env:
make -j3 install && make -j3 install &&
make -j3 dist || make -j3 dist ||
( (
echo '=== LOG FILE(S) START ===' echo '=== LOG FILE(S) START ===';
find -name test-suite.log | xargs cat find -name test-suite.log | xargs cat;
echo '=== LOG FILE(S) END ===' echo '=== LOG FILE(S) END ===';
exit 1 exit 1
) )
" "