From 707e5de0ba3892a7e95aa9bda66d75b6b0bdd184 Mon Sep 17 00:00:00 2001 From: Kei YAMAZAKI Date: Thu, 20 Aug 2015 09:58:20 +0900 Subject: [PATCH] Fix compilation problem of go1.5 --- scripts/install | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install b/scripts/install index 875d1a4..50b5c81 100755 --- a/scripts/install +++ b/scripts/install @@ -81,6 +81,7 @@ copy_source() { compile_go() { display_message " * Compiling..." + [ -z "$GOROOT_BOOTSTRAP" ] && export GOROOT_BOOTSTRAP=$GOROOT unset GOARCH && unset GOOS && unset GOPATH && unset GOBIN && unset GOROOT && export GOBIN=$GO_INSTALL_ROOT/bin && export PATH=$GOBIN:$PATH &&