From a053cd5be23f5a329b46d94f4a80bafbd4c12249 Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Thu, 14 Jun 2018 18:23:47 +0200 Subject: [PATCH] travis: Fix error path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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é --- .travis.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 ) " -- GitLab