mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-18 10:35:20 +00:00
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 <abologna@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
aa3df9518d
commit
a053cd5be2
12
.travis.yml
12
.travis.yml
@ -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:
|
|||||||
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
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user