aboutsummaryrefslogtreecommitdiffstats
path: root/build/env.sh
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2017-03-22 22:52:44 +0800
committerFelix Lange <fjl@twurst.com>2017-03-22 23:00:16 +0800
commitda7af440609229b269bea41a8041cb25da4f12e8 (patch)
tree1aea5a79ea750b30fd4d8f2a5338db7ba413894a /build/env.sh
parent6742fc526f3e1ae985d82a1781df4267485e2c70 (diff)
downloadgo-tangerine-da7af440609229b269bea41a8041cb25da4f12e8.tar
go-tangerine-da7af440609229b269bea41a8041cb25da4f12e8.tar.gz
go-tangerine-da7af440609229b269bea41a8041cb25da4f12e8.tar.bz2
go-tangerine-da7af440609229b269bea41a8041cb25da4f12e8.tar.lz
go-tangerine-da7af440609229b269bea41a8041cb25da4f12e8.tar.xz
go-tangerine-da7af440609229b269bea41a8041cb25da4f12e8.tar.zst
go-tangerine-da7af440609229b269bea41a8041cb25da4f12e8.zip
build: require Go >= 1.7
We have decided to bump the requirement to Go 1.7 because it enables subtests and allows dropping backwards-compatibility code. This is in line with Go's support policy. Go 1.6 and earlier no longer receive security updates.
Diffstat (limited to 'build/env.sh')
-rwxr-xr-xbuild/env.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/build/env.sh b/build/env.sh
index af560305b..3914555d1 100755
--- a/build/env.sh
+++ b/build/env.sh
@@ -20,8 +20,7 @@ fi
# Set up the environment to use the workspace.
GOPATH="$workspace"
-GO15VENDOREXPERIMENT=1
-export GOPATH GO15VENDOREXPERIMENT
+export GOPATH
# Run the command inside the workspace.
cd "$ethdir/go-ethereum"