From ae81b7726509b456e2c6adfd433ea881d8d70716 Mon Sep 17 00:00:00 2001 From: Joshua Bussdieker Date: Fri, 18 Nov 2011 01:17:04 -0800 Subject: [PATCH] Fixed bug from setting up GOROOT in source file. --- bin/gvm-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/gvm-install b/bin/gvm-install index 4da262e..ed84f88 100755 --- a/bin/gvm-install +++ b/bin/gvm-install @@ -6,7 +6,7 @@ if [[ $1 == "install" ]]; then echo " * Downloading..." hg clone -u release.r$2 https://go.googlecode.com/hg/ $INSTALL_ROOT > /dev/null 2>&1 echo " * Compiling..." - cd $INSTALL_ROOT/src;./all.bash > /dev/null 2>&1 + cd $INSTALL_ROOT/src;unset GOROOT;./all.bash > /dev/null 2>&1 exit 0 else echo "ERROR: Please specifiy the version"