summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-rw-r--r--meta/classes-recipe/testimage.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes-recipe/testimage.bbclass b/meta/classes-recipe/testimage.bbclass
index 281de4784f..d076102f96 100644
--- a/meta/classes-recipe/testimage.bbclass
+++ b/meta/classes-recipe/testimage.bbclass
@@ -208,8 +208,8 @@ def retrieve_test_artifacts(target, artifacts_list, target_dir):
208 dest_dir = os.path.join(local_artifacts_dir, os.path.dirname(artifact_path[1:])) 208 dest_dir = os.path.join(local_artifacts_dir, os.path.dirname(artifact_path[1:]))
209 os.makedirs(dest_dir, exist_ok=True) 209 os.makedirs(dest_dir, exist_ok=True)
210 target.copyFrom(artifact_path, dest_dir) 210 target.copyFrom(artifact_path, dest_dir)
211 except: 211 except Exception as e:
212 bb.warn(f"Can not retrieve {artifact_path} from test target") 212 bb.warn(f"Can not retrieve {artifact_path} from test target: {e}")
213 213
214def testimage_main(d): 214def testimage_main(d):
215 import os 215 import os