Skip to content

Commit f85c7ba

Browse files
Merge pull request #1217 from benluddy/vendored-yq
Use vendored transitive dependencies for "go run" of vendored yq.
2 parents 04b659c + dcea177 commit f85c7ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ IMAGE_TAG ?= "dev"
2020
SPECIFIC_UNIT_TEST := $(if $(TEST),-run $(TEST),)
2121
LOCAL_NAMESPACE := "olm"
2222
export GO111MODULE=on
23-
CONTROLLER_GEN := go run -mod=vendor ./vendor/sigs.k8s.io/controller-tools/cmd/controller-gen
24-
YQ_INTERNAL := go run ./vendor/github.com/mikefarah/yq/v2/
23+
CONTROLLER_GEN := go run $(MOD_FLAGS) ./vendor/sigs.k8s.io/controller-tools/cmd/controller-gen
24+
YQ_INTERNAL := go run $(MOD_FLAGS) ./vendor/github.com/mikefarah/yq/v2/
2525

2626
# ART builds are performed in dist-git, with content (but not commits) copied
2727
# from the source repo. Thus at build time if your code is inspecting the local

0 commit comments

Comments
 (0)