summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrii Klymenko <a.klymenko@vyos.io>2026-04-23 15:30:57 +0300
committerGitHub <noreply@github.com>2026-04-23 15:30:57 +0300
commit4ef1924d9a5328aaab11a4e409c8116f99cbc140 (patch)
tree0be0a436abfce204e5b44bbe7a6bbaff8f8ecfc4
parent16ced6d41f030f5621e667abfe0e35aa498bc71b (diff)
downloadvyos-build-4ef1924d9a5328aaab11a4e409c8116f99cbc140.tar.gz
vyos-build-4ef1924d9a5328aaab11a4e409c8116f99cbc140.zip
T8542: Add functionality to generate SBOM file from ISO image
Apply quoting to the passed variable. Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a57538fc..2f488318 100644
--- a/Makefile
+++ b/Makefile
@@ -93,7 +93,7 @@ oci: checkiso
.PHONY: make_sbom
.ONESHELL:
make_sbom: checkiso
- @scripts/check-qemu-install --debug --iso $(ISO_PATH) --sbom --cpu 2 --memory 4 $(if $(SBOM_OUTPUT_DIR),--sbom-output-dir $(SBOM_OUTPUT_DIR))
+ @scripts/check-qemu-install --debug --iso $(ISO_PATH) --sbom --cpu 2 --memory 4 $(if $(SBOM_OUTPUT_DIR),--sbom-output-dir "$(SBOM_OUTPUT_DIR)")
.PHONY: clean
.ONESHELL: