Skip to content

Commit ea48080

Browse files
authored
Merge pull request #185 from wongni/fix-makefile-to-run-e2e
Fix Makefile to run e2e
2 parents 9b13e22 + 36052e8 commit ea48080

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ endif
7575
export ACK_GINKGO_DEPRECATIONS := 1.16.5
7676
export ACK_GINKGO_RC=true
7777

78-
export PATH := $(REPO_ROOT)/$(TOOLS_BIN_DIR):$(PATH)
78+
export PATH := $(TOOLS_BIN_DIR):$(PATH)
7979

8080
all: build
8181

@@ -199,7 +199,7 @@ run: generate-deepcopy generate-conversion ## Run a controller from your host.
199199

200200
.PHONY: deploy
201201
deploy: generate-deepcopy generate-manifests $(KUSTOMIZE) ## Deploy controller to the K8s cluster specified in ~/.kube/config.
202-
cd config/manager && $(REPO_ROOT)/$(KUSTOMIZE) edit set image controller=${IMG}
202+
cd config/manager && $(KUSTOMIZE) edit set image controller=${IMG}
203203
cd $(REPO_ROOT)
204204
$(KUSTOMIZE) build config/default | kubectl apply -f -
205205

0 commit comments

Comments
 (0)