Skip to content

Commit

Permalink
Merge pull request #8 from cblecker/gomodule-make
Browse files Browse the repository at this point in the history
Use gomodules in subshell
  • Loading branch information
openshift-merge-robot committed Aug 17, 2019
2 parents 3960064 + 2f186fd commit b571886
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion standard.mk
Expand Up @@ -65,7 +65,7 @@ gobuild: ## Build binary

.PHONY: gotest
gotest:
go test $(TESTOPTS) $(shell go list -mod=readonly -e ./... | egrep -v "/(vendor)/")
go test $(TESTOPTS) $(shell GO111MODULE=$(GO111MODULE) go list -mod=readonly -e ./... | egrep -v "/(vendor)/")

.PHONY: envtest
envtest: isclean
Expand Down

0 comments on commit b571886

Please sign in to comment.