From 5879669d9dc45ecc6ab3b3a07eb73c229fcc5ced Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Fri, 1 Nov 2013 11:28:31 +1100 Subject: [PATCH] go.tools/dashboard/builder: ignore GOPATH setting during build (on windows) R=golang-dev, minux.ma, adg CC=golang-dev https://golang.org/cl/18920046 --- dashboard/builder/env.go | 1 + 1 file changed, 1 insertion(+) diff --git a/dashboard/builder/env.go b/dashboard/builder/env.go index 3c79bfd4..497f6520 100644 --- a/dashboard/builder/env.go +++ b/dashboard/builder/env.go @@ -88,6 +88,7 @@ func (b *Builder) envvWindows() []string { } skip := map[string]bool{ "GOBIN": true, + "GOPATH": true, "GOROOT": true, "INCLUDE": true, "LIB": true,