From: Andrea Bolognani Date: Thu, 14 Jun 2018 16:23:47 +0000 (+0200) Subject: travis: Fix error path X-Git-Tag: v4.5.0-rc1~106 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a053cd5be23f5a329b46d94f4a80bafbd4c12249;p=thirdparty%2Flibvirt.git 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 Reviewed-by: Daniel P. Berrangé --- diff --git a/.travis.yml b/.travis.yml index a902d203ff..1e2e307ac5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -52,9 +52,9 @@ env: make -j3 syntax-check && make -j3 distcheck DISTCHECK_CONFIGURE_FLAGS=\"\$DISTCHECK_CONFIGURE_FLAGS\" || ( - echo '=== LOG FILE(S) START ===' - find -name test-suite.log | xargs cat - echo '=== LOG FILE(S) END ===' + echo '=== LOG FILE(S) START ==='; + find -name test-suite.log | xargs cat; + echo '=== LOG FILE(S) END ==='; exit 1 ) " @@ -68,9 +68,9 @@ env: make -j3 install && make -j3 dist || ( - echo '=== LOG FILE(S) START ===' - find -name test-suite.log | xargs cat - echo '=== LOG FILE(S) END ===' + echo '=== LOG FILE(S) START ==='; + find -name test-suite.log | xargs cat; + echo '=== LOG FILE(S) END ==='; exit 1 ) "