From b75125844f052df012a6ba633e347e9c1c3b1e5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20B=C3=A4hler?= Date: Tue, 17 Oct 2023 18:41:10 +0200 Subject: [PATCH] fix: remove installing echo --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 9d439d48..8c5b6559 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ endif # Defaults REGISTRY ?= ghcr.io -REPOSITORY ?= capsuleproject/capsule +REPOSITORY ?= projectcapsule/capsule GIT_HEAD_COMMIT ?= $(shell git rev-parse --short HEAD) GIT_TAG_COMMIT ?= $(shell git rev-parse --short $(VERSION)) GIT_MODIFIED_1 ?= $(shell git diff $(GIT_HEAD_COMMIT) $(GIT_TAG_COMMIT) --quiet && echo "" || echo ".dev") @@ -217,7 +217,6 @@ ko-publish-capsule: ko-login ## Build and publish kyvernopre image (with ko) @LD_FLAGS=$(LD_FLAGS) KOCACHE=$(KOCACHE) KO_DOCKER_REPO=$(CAPSULE_IMG) \ $(KO) build ./ --bare --tags=$(KO_TAGS) - .PHONY: ko-publish-all ko-publish-all: ko-publish-capsule @@ -283,7 +282,6 @@ PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST)))) define go-install-tool @[ -f $(1) ] || { \ set -e ;\ -echo "Installing $(2)" ;\ GOBIN=$(PROJECT_DIR)/bin go install $(2) ;\ } endef