浏览代码

Merge pull request #3280 from fjl/fix-go15

build: set GO15VENDOREXPERIMENT in env.sh
Jeffrey Wilcke 9 年之前
父节点
当前提交
3badd3782b
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      build/env.sh

+ 2 - 1
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"