From 79afc6e5e7fb353ccc5f53f3803298df8dcfb389 Mon Sep 17 00:00:00 2001 From: Serge Schneider Date: Mon, 28 Apr 2025 16:12:23 +0100 Subject: [PATCH] export-image: remove image_ prefix from non-image files --- export-image/05-finalise/01-run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/export-image/05-finalise/01-run.sh b/export-image/05-finalise/01-run.sh index 6012957..107becf 100755 --- a/export-image/05-finalise/01-run.sh +++ b/export-image/05-finalise/01-run.sh @@ -133,9 +133,9 @@ none | *) esac if [ -f "${SBOM_FILE}" ]; then - xz -c "${SBOM_FILE}" > "$DEPLOY_DIR/image_$(basename "${SBOM_FILE}").xz" + xz -c "${SBOM_FILE}" > "$DEPLOY_DIR/$(basename "${SBOM_FILE}").xz" fi if [ -f "${BMAP_FILE}" ]; then - xz -c "${BMAP_FILE}" > "$DEPLOY_DIR/image_$(basename "${BMAP_FILE}").xz" + xz -c "${BMAP_FILE}" > "$DEPLOY_DIR/$(basename "${BMAP_FILE}").xz" fi cp "$INFO_FILE" "$DEPLOY_DIR/"