diff options
Diffstat (limited to 'clone.go')
| -rw-r--r-- | clone.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -128,13 +128,13 @@ func Clone(workdir, gopath string) error { basedir := strings.TrimSuffix(fullpath, dirname) var err error - url := "http://" + gopath + url := "https://" + gopath log.Info("trying git clone") log.Info("gopath =", gopath) // try a direct git clone against the gopath - // cloneActual("helloworld", "/home/jcarr/go/src/go.wit.com/apps", "http://go.wit.com/apps/helloworld") + // cloneActual("helloworld", "/home/jcarr/go/src/go.wit.com/apps", "https://go.wit.com/apps/helloworld") if err = cloneActual(dirname, basedir, url); err == nil { // git clone worked! return nil |
