diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-11-16 20:07:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-16 20:07:44 +0800 |
commit | 3badd3782bf65118d91bdd9c65d17a9ba2a510eb (patch) | |
tree | d32acda93c2669f1f2339c884732eabf6420f84a | |
parent | 64359c9417244c7a824ea90b39a20b06f702bc08 (diff) | |
parent | be2a264915f57c3048444033e5824d6b40b7cad4 (diff) | |
download | dexon-3badd3782bf65118d91bdd9c65d17a9ba2a510eb.tar.gz dexon-3badd3782bf65118d91bdd9c65d17a9ba2a510eb.tar.zst dexon-3badd3782bf65118d91bdd9c65d17a9ba2a510eb.zip |
Merge pull request #3280 from fjl/fix-go15
build: set GO15VENDOREXPERIMENT in env.sh
-rwxr-xr-x | build/env.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/env.sh b/build/env.sh index 3914555d1..af560305b 100755 --- a/build/env.sh +++ b/build/env.sh @@ -20,7 +20,8 @@ fi # Set up the environment to use the workspace. GOPATH="$workspace" -export GOPATH +GO15VENDOREXPERIMENT=1 +export GOPATH GO15VENDOREXPERIMENT # Run the command inside the workspace. cd "$ethdir/go-ethereum" |