5 Commits
Author SHA1 Message Date
Joshua Bussdieker f0e3956030 Bump version 2012-03-19 20:37:52 -07:00
Joshua Bussdieker e3246cef0d Match gpkg help format 2012-03-19 20:36:05 -07:00
Joshua Bussdieker 4359f5252f Fix path bug and add back config 2012-03-18 11:13:41 -07:00
jbussdieker e8076a83fb Merge pull request #4 from hoisie/master
Use HTTPS instead of SSH when downloading the git repo
2012-03-17 16:49:47 -07:00
Michael Hoisie bc1fc149f3 Use HTTP instead of SSH to access the git repo. Some firewalls block port port 9418 (the defailt for git ssh) 2012-03-17 14:23:12 -07:00
5 changed files with 10 additions and 15 deletions
+1 -1
View File
@@ -1 +1 @@
1.0.10
1.0.11
+6 -13
View File
@@ -32,20 +32,12 @@ else
elif [[ -n $command ]]; then
display_error "Unrecognized command line argument: '$command'"
else
echo "= gvm
echo "Usage: gvm [command]
* http://github.com/moovweb/gvm
== DESCRIPTION:
GVM is the Go Version Manager
== Usage
gvm Command
== Command
Description:
GVM is the Go Version Manager
Commands:
version - print the gvm version number
get - gets the latest code (for debugging)
use - select a go version to use
@@ -55,6 +47,7 @@ GVM is the Go Version Manager
uninstall - uninstall go versions
list - list installed go versions
listall - list available versions
pkgset - manage go packages sets"
pkgset - manage go packages sets
"
fi
fi
+1 -1
View File
@@ -25,7 +25,7 @@ else
GVM_NAME="gvm"
fi
SRC_REPO=git://github.com/moovweb/gvm.git
SRC_REPO=https://github.com/moovweb/gvm.git
[ "$GVM_DEST" == "" ] && display_error "No destination specified!"
[ -d $GVM_DEST/$GVM_NAME ] && display_error "Already installed!"
+1
View File
@@ -0,0 +1 @@
git://github.com/moovweb
+1
View File
@@ -24,6 +24,7 @@ function gvm_pkgset_use() {
fuzzy_match=`ls $GVM_ROOT/environments | sort | grep "$gvm_go_name@" | grep "$1" | head -n 1` ||
display_error "Invalid package set" || return 1
export PATH=$GVM_PATH_BACKUP
. "$GVM_ROOT/environments/$fuzzy_match" ||
display_error "Failed to source the package set environment" || return 1