Skip to content

Commit

Permalink
fix: remove installing echo
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverbaehler committed Oct 17, 2023
1 parent 9016b5e commit b751258
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b751258

Please sign in to comment.