From 94f7a6fc1f0d18abe7fac7d3d1d526b8073cc5c1 Mon Sep 17 00:00:00 2001 From: Simon de Vlieger Date: Mon, 20 Jan 2025 12:15:29 +0100 Subject: [PATCH] makefile: use -cli archive names The Go macros have a bunch of expectations about package names and archive names. Let's keep the archive names with `-cli` in them to appease them. These can only be dropped after we change repositories around and thus change the `goipath`; after which these can drop their `-cli`. Signed-off-by: Simon de Vlieger --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 87cdfd2..4bf4acd 100644 --- a/Makefile +++ b/Makefile @@ -49,8 +49,8 @@ GOLANGCI_COMPOSER_IMAGE=composer_golangci VERSION := $(shell ( git describe --tags --abbrev=0 2>/dev/null || echo v1 ) | sed 's|v||') COMMIT = $(shell (cd "$(SRCDIR)" && git rev-parse HEAD)) -PACKAGE_NAME_VERSION = image-builder-$(VERSION) -PACKAGE_NAME_COMMIT = image-builder-$(COMMIT) +PACKAGE_NAME_VERSION = image-builder-cli-$(VERSION) +PACKAGE_NAME_COMMIT = image-builder-cli-$(COMMIT) # # Generic Targets