diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-09 10:37:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-09 10:37:54 +0200 |
commit | 46227e0b030ac4180d8f3179f2b33c5d6d8fd200 (patch) | |
tree | 5bfe9280cfabc38eef522de7d3c2d4469309319a /Makefile | |
parent | 3c94fa9cc77b6f15734f4be7e3794db603667fef (diff) | |
parent | 55c74b6dbe5419f3ec2d815d2e26ddd242bad7fd (diff) | |
download | podman-46227e0b030ac4180d8f3179f2b33c5d6d8fd200.tar.gz podman-46227e0b030ac4180d8f3179f2b33c5d6d8fd200.tar.bz2 podman-46227e0b030ac4180d8f3179f2b33c5d6d8fd200.zip |
Merge pull request #5768 from mtrmac/make-vendor
Fix (make vendor)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -637,10 +637,9 @@ build-no-cgo: .PHONY: vendor vendor: - export GO111MODULE=on \ - $(GO) mod tidy && \ - $(GO) mod vendor && \ - $(GO) mod verify + GO111MODULE=on $(GO) mod tidy + GO111MODULE=on $(GO) mod vendor + GO111MODULE=on $(GO) mod verify .PHONY: vendor-in-container vendor-in-container: |