From 441857b277d376395ba9591f96c5d64116a41929 Mon Sep 17 00:00:00 2001 From: pancho horrillo Date: Sun, 1 Jan 2017 22:40:10 +0100 Subject: [PATCH] Drop obsolete GO15VENDOREXPERIMENT env var from Travis CI config (#26) Now that Go 1.5 is gone from the build matrix, this var is no longer needed, as it is the default behaviour in Go 1.6+. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c851206..2f16d42 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ install: before_script: script: - glide install - - GO15VENDOREXPERIMENT=1 go build $(glide novendor) - - GO15VENDOREXPERIMENT=1 go test $(glide novendor) + - go build $(glide novendor) + - go test $(glide novendor) - go vet $(glide novendor) - glide novendor | xargs -n1 golint