From 04d57f0d56b41491eced1690fb170327c02fa413 Mon Sep 17 00:00:00 2001 From: Luis Sampaio Date: Mon, 7 Nov 2022 10:12:39 -0800 Subject: [PATCH] Update test patch script build-image param This commits updates the build-image call to use --keep as the build-image was updated to use --clean by default. As we need to preserve the ostree_repo during this build-image call the --keep was added. Story: 2009969 Task: 45635 Signed-off-by: Luis Sampaio Change-Id: I102504f3fb933c8b5adbbc68df9dde79e1a34308 --- sw-patch/scripts/build_test_patches.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw-patch/scripts/build_test_patches.py b/sw-patch/scripts/build_test_patches.py index 293190e8..68be7785 100755 --- a/sw-patch/scripts/build_test_patches.py +++ b/sw-patch/scripts/build_test_patches.py @@ -144,7 +144,7 @@ class TestPatchBuilder(): """ cmd = ''' source import-stx - stx shell -c "build-image" + stx shell -c "build-image --keep" ''' ret = run_cmd(cmd) log.info("Build image return code %s", ret.returncode)