Skip to content

Commit

Permalink
fix PATH variable for binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
Iaroslav Ivchenkov committed Dec 30, 2024
1 parent ed6e7e8 commit d7f6e4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ LOCALBIN ?= $(shell pwd)/bin
$(LOCALBIN):
@mkdir -p $(LOCALBIN)

KIND ?= PATH=$(LOCALBIN):$$PATH kind
KIND ?= PATH=$(LOCALBIN):$(PATH) kind
KIND_VERSION ?= 0.25.0

HELM ?= PATH=$(LOCALBIN):$$PATH helm
HELM ?= PATH=$(LOCALBIN):$(PATH) helm
HELM_VERSION ?= v3.15.1

KUBECTL ?= PATH=$(LOCALBIN):$$PATH kubectl
KUBECTL ?= PATH=$(LOCALBIN):$(PATH) kubectl

# installs binary locally
$(LOCALBIN)/%: $(LOCALBIN)
Expand Down

0 comments on commit d7f6e4c

Please sign in to comment.