Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2be88fe

Browse files
committedMay 26, 2025··
Tweak kubebuilder-assets target
Now it is possible to shell eval the output of this target, like so: ``` eval "$(gmake kubebuilder-assets)" ``` This is helpful to run `ginkgo` commands directly, without Make
1 parent 3272884 commit 2be88fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export KUBEBUILDER_ASSETS = $(LOCAL_TESTBIN)/k8s/$(ENVTEST_K8S_VERSION)-$(platfo
5454

5555
.PHONY: kubebuilder-assets
5656
kubebuilder-assets: $(KUBEBUILDER_ASSETS)
57-
@echo "export KUBEBUILDER_ASSETS = $(LOCAL_TESTBIN)/k8s/$(ENVTEST_K8S_VERSION)-$(platform)-$(ARCHITECTURE)"
57+
@echo "export KUBEBUILDER_ASSETS=$(LOCAL_TESTBIN)/k8s/$(ENVTEST_K8S_VERSION)-$(platform)-$(ARCHITECTURE)"
5858

5959
$(KUBEBUILDER_ASSETS):
6060
setup-envtest --os $(platform) --arch $(ARCHITECTURE) --bin-dir $(LOCAL_TESTBIN) use $(ENVTEST_K8S_VERSION)

0 commit comments

Comments
 (0)
Please sign in to comment.