提交 a053cd5b 编写于 作者: A Andrea Bolognani

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: NAndrea Bolognani <abologna@redhat.com>
Reviewed-by: NDaniel P. Berrangé <berrange@redhat.com>
上级 aa3df951
...@@ -52,9 +52,9 @@ env: ...@@ -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: ...@@ -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
) )
" "
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册