From de36693ce7d2e751f016fbcf5478c80b95a548e6 Mon Sep 17 00:00:00 2001 From: Riyaz Faizullabhoy Date: Tue, 5 Apr 2016 11:03:24 -0700 Subject: [PATCH] Remove vendor from GOPATH, use GO15VENDOREXPERIMENT flag Signed-off-by: Riyaz Faizullabhoy --- misc/docker-integration-test.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/misc/docker-integration-test.py b/misc/docker-integration-test.py index 86ef0b82a1..1a46bf8d77 100755 --- a/misc/docker-integration-test.py +++ b/misc/docker-integration-test.py @@ -66,9 +66,7 @@ def fake_vendor(): dockerfile_addition = ("\n" "RUN set -x && " "export GO15VENDOREXPERIMENT=1 && " - "GOPATH=$(pwd)/vendor/src/github.com/docker/notary/vendor:$GOPATH " "go build -o /usr/local/bin/notary-server github.com/docker/notary/cmd/notary-server &&" - "GOPATH=$(pwd)/vendor/src/github.com/docker/notary/vendor:$GOPATH " "go build -o /usr/local/bin/notary github.com/docker/notary/cmd/notary") with open(os.path.join(DOCKER_DIR, "Dockerfile")) as dockerfile: