diff options
| author | Andrii Klymenko <a.klymenko@vyos.io> | 2026-04-23 15:30:57 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-23 15:30:57 +0300 |
| commit | 4ef1924d9a5328aaab11a4e409c8116f99cbc140 (patch) | |
| tree | 0be0a436abfce204e5b44bbe7a6bbaff8f8ecfc4 | |
| parent | 16ced6d41f030f5621e667abfe0e35aa498bc71b (diff) | |
| download | vyos-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |
