From 5569e543d0a5dade43fc4c421e2277f6e61bc80b Mon Sep 17 00:00:00 2001 From: Javier Viguera Date: Tue, 22 Apr 2014 13:29:48 +0200 Subject: [PATCH] build.sh: make sure the clean command returns success This is needed so jenkins jobs not using 'meta-digi-dey' (the layer containing the cleaned recipe) can complete. Otherwise they fail with: ERROR: Nothing PROVIDES 'packagegroup-dey-examples' (for example using just the BSP layer 'meta-digi-arm' with standard image recipes, e.g. core-image-minimal) Signed-off-by: Javier Viguera --- sdk/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/build.sh b/sdk/build.sh index 16cc63271..2275c78fc 100755 --- a/sdk/build.sh +++ b/sdk/build.sh @@ -81,7 +81,7 @@ copy_images() { # builds. # purge_sstate() { - bitbake -c cleansstate packagegroup-dey-examples + bitbake -c cleansstate packagegroup-dey-examples || true } # Sanity check (Jenkins environment)