[libvirt] [PATCH v2 5/6] travis: Fix error path

Andrea Bolognani abologna at redhat.com
Thu Jun 14 16:53:38 UTC 2018


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 at redhat.com>
---
 .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
         )
       "
-- 
2.17.1




More information about the libvir-list mailing list