From 24c68f37184b40dd551414778c0a0d24feccdeef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Thu, 6 Nov 2025 13:44:14 +0100 Subject: [PATCH 1/2] Makefile: Include `TEMPLATE_IMAGES` in release artifacts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `_images` directory was missing from the output release tarballs because `TEMPLATE_IMAGES` was not included in the `ARTIFACT_DES` dependencies for the artifact targets. Signed-off-by: Paweł Gronowski --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ff468a79717..d98de2dd8d2 100644 --- a/Makefile +++ b/Makefile @@ -644,7 +644,7 @@ artifact: $(addprefix $(ARTIFACT_PATH_COMMON),$(ARTIFACT_FILE_EXTENSIONS)) \ ARTIFACT_DES = _output/bin/limactl$(exe) limactl-plugins $(LIMA_DEPS) $(HELPERS_DEPS) \ $(NATIVE_GUESTAGENT) \ - $(TEMPLATES) $(TEMPLATE_EXPERIMENTALS) \ + $(TEMPLATES) $(TEMPLATE_IMAGES) $(TEMPLATE_EXPERIMENTALS) \ additional-drivers \ $(DOCUMENTATION) _output/share/doc/lima/templates \ _output/share/man/man1/limactl.1 From 9470963cae90563218336a492715b712b592bf3c Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 6 Nov 2025 22:24:56 +0900 Subject: [PATCH 2/2] Makefile: include `TEMPLATE_DEFAULTS` in release artifacts Signed-off-by: Akihiro Suda --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d98de2dd8d2..ebc074a908b 100644 --- a/Makefile +++ b/Makefile @@ -644,7 +644,7 @@ artifact: $(addprefix $(ARTIFACT_PATH_COMMON),$(ARTIFACT_FILE_EXTENSIONS)) \ ARTIFACT_DES = _output/bin/limactl$(exe) limactl-plugins $(LIMA_DEPS) $(HELPERS_DEPS) \ $(NATIVE_GUESTAGENT) \ - $(TEMPLATES) $(TEMPLATE_IMAGES) $(TEMPLATE_EXPERIMENTALS) \ + $(TEMPLATES) $(TEMPLATE_IMAGES) $(TEMPLATE_DEFAULTS) $(TEMPLATE_EXPERIMENTALS) \ additional-drivers \ $(DOCUMENTATION) _output/share/doc/lima/templates \ _output/share/man/man1/limactl.1