2 Commits
Author SHA1 Message Date
Joshua B. Bussdieker e207ebc7fa Forgot source line 2014-04-27 12:45:34 -07:00
Joshua B. Bussdieker c1dd5474ac Add test for issue #64 2014-04-27 12:19:11 -07:00
5 changed files with 12 additions and 7 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ Installing
To install:
bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer)
bash < <(curl -s -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer)
Installing Go
=============
+1 -1
View File
@@ -26,7 +26,7 @@ Installing
To install:
bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer)
bash < <(curl -s -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer)
Installing Go
=============
-4
View File
@@ -1,9 +1,5 @@
#!/usr/bin/env bash
[ -n "$GVM_DEBUG" ] && {
set -x
}
if [ -z "$GVM_ROOT" ]; then
tput sgr0
tput setaf 1
+1 -1
View File
@@ -59,7 +59,7 @@ SRC_REPO=${SRC_REPO:-https://github.com/moovweb/gvm.git}
GIT_ROOT=$(git rev-parse --show-toplevel 2>/dev/null)
if [[ -z "$GIT_ROOT" || "$(basename "$GIT_ROOT")" != "gvm" ]]
if [[ -z "$GIT_ROOT" ]]
then
echo "Cloning from $SRC_REPO to $GVM_DEST/$GVM_NAME"
+9
View File
@@ -0,0 +1,9 @@
source $GVM_ROOT/scripts/gvm
gvm install 1.2 #status=0
gvm list #status=0; match=/1\.2/
gvm install go1.2 #status=0
gvm list #status=0; match=/go1\.2/
gvm use 1.2 #status=0
go version #status=0; match=/1\.2/
gvm use go1.2 #status=0
go version #status=0; match=/go1\.2/