From ce01e4c25d00e010193e629bce64e17f9b84b2a2 Mon Sep 17 00:00:00 2001 From: qoijjj <129108030+qoijjj@users.noreply.github.com> Date: Sat, 11 May 2024 08:57:28 -0700 Subject: [PATCH] fix: iso name for image generation script --- generate_secureblue_iso.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/generate_secureblue_iso.sh b/generate_secureblue_iso.sh index 5f6f14f..f4cfe6d 100644 --- a/generate_secureblue_iso.sh +++ b/generate_secureblue_iso.sh @@ -102,7 +102,7 @@ fi image_name+="-hardened" -command="sudo podman run --rm --privileged --volume .:/build-container-installer/build ghcr.io/jasonn3/build-container-installer:latest IMAGE_REPO=ghcr.io/secureblue IMAGE_NAME=$image_name ISO_NAME=$image_name.iso VERSION=40 IMAGE_TAG=latest" +command="sudo podman run --rm --privileged --volume .:/build-container-installer/build ghcr.io/jasonn3/build-container-installer:latest IMAGE_REPO=ghcr.io/secureblue IMAGE_NAME=$image_name VERSION=40 IMAGE_TAG=latest" echo "Command to execute:" echo "$command" @@ -111,4 +111,6 @@ echo "" read -p "Generate this ISO? (yes/No): " generate_iso if is_yes "$generate_iso"; then $command + mv deploy.iso $image_name.iso + mv deploy.iso-CHECKSUM $image_name.iso-CHECKSUM fi