Skip to content

Commit

Permalink
Merge pull request #1038 from skitt/go-1.1x
Browse files Browse the repository at this point in the history
Enable vendoring on Go 1.1x
  • Loading branch information
openshift-merge-robot authored Sep 11, 2019
2 parents f690ccd + 758763d commit 201c8aa
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 @@ -4,7 +4,7 @@

SHELL := /bin/bash
PKG := github.com/operator-framework/operator-lifecycle-manager
MOD_FLAGS := $(shell (go version | grep -q -E "1\.(11|12)") && echo -mod=vendor)
MOD_FLAGS := $(shell (go version | grep -q -E "1\.1[1-9]") && echo -mod=vendor)
CMDS := $(shell go list $(MOD_FLAGS) ./cmd/...)
TCMDS := $(shell go list $(MOD_FLAGS) ./test/e2e/...)
CODEGEN_INTERNAL := ./vendor/k8s.io/code-generator/generate_internal_groups.sh
Expand Down

0 comments on commit 201c8aa

Please sign in to comment.