diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2017-04-18 12:33:31 +0200 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2017-04-18 12:33:31 +0200 |
commit | aeb54903941fb8cd1a2ef30479b40d7313e42add (patch) | |
tree | 3a3de3c222b7f210891f069a7987cc976d47b906 /jjb | |
parent | b81be5328770ed3e5406a163ce6ed6bf6532c26f (diff) |
Restrict verbose output to failure
Change-Id: I275f95dc8f1213ccede893951e1f515f116e8a8d
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/common/include-agl-bitbake-image.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/common/include-agl-bitbake-image.sh b/jjb/common/include-agl-bitbake-image.sh index 7ee2ce15..aa4b2086 100644 --- a/jjb/common/include-agl-bitbake-image.sh +++ b/jjb/common/include-agl-bitbake-image.sh @@ -6,7 +6,7 @@ ################################################################################ # finally, build the agl-demo-platform (we retry to catch the tar-native bug) -( ( bitbake -v -D $TARGETIMAGE ) || ( echo '## Failed once, retry .. ##' ; sync ; sleep 2 ; bitbake $TARGETIMAGE ) ) || ( echo '## Failed again, bail out ...' ; exit 1 ) +( ( bitbake $TARGETIMAGE ) || ( echo '## Failed once, retry .. ##' ; sync ; sleep 2 ; bitbake -v -v $TARGETIMAGE ) ) || ( echo '## Failed again, bail out ...' ; exit 1 ) du -hs tmp/deploy/* |