Thursday, 14 June
2018
Thu, 14 Jun
'18
11:53 a.m.
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(a)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