Skip to content

Commit

Permalink
Makefile: fix installing kind tool (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
eguzki authored Mar 23, 2023
1 parent 78ef9d9 commit b93c0a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ opm: $(OPM) ## Download opm locally if necessary.
KIND = $(PROJECT_PATH)/bin/kind
KIND_VERSION = v0.17.0
$(KIND):
$(call go-install-tool,$(KIND),sigs.k8s.io/kind@v$(KIND_VERSION))
$(call go-install-tool,$(KIND),sigs.k8s.io/kind@$(KIND_VERSION))

.PHONY: kind
kind: $(KIND) ## Download kind locally if necessary.
Expand Down

0 comments on commit b93c0a6

Please sign in to comment.