From 1385472aaf18373d8c713f4235352c494a3fd2a4 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Thu, 2 Jul 2026 09:42:26 +0100 Subject: [PATCH] push_module does not require build_module --- make/container.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/container.mk b/make/container.mk index 5d8a47b..b62dac0 100644 --- a/make/container.mk +++ b/make/container.mk @@ -18,7 +18,7 @@ endef define push_module_rule = .PHONY: push_$(module) -push_$(module): $(if $(is_containerised),login_registry build_$(module)) +push_$(module): $(if $(is_containerised),login_registry) $(if $(is_containerised),\ podman push $(container_image_name)) endef