From bc1fc149f31233d90e6a44c2cf6656513c3665f9 Mon Sep 17 00:00:00 2001 From: Michael Hoisie Date: Sat, 17 Mar 2012 14:23:12 -0700 Subject: [PATCH] Use HTTP instead of SSH to access the git repo. Some firewalls block port port 9418 (the defailt for git ssh) --- binscripts/gvm-installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binscripts/gvm-installer b/binscripts/gvm-installer index 4f1805a..cd0769b 100755 --- a/binscripts/gvm-installer +++ b/binscripts/gvm-installer @@ -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!"