summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--repoClone.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/repoClone.go b/repoClone.go
index 2afc6fa..f49319b 100644
--- a/repoClone.go
+++ b/repoClone.go
@@ -51,6 +51,9 @@ func clonePathHack(dirname string, basedir string, gopath string) (string, error
case "google.golang.org/appengine":
return cloneActual(dirname, basedir, "https://"+"go.googlesource.com/appengine")
}
+ if strings.HasPrefix(gopath, "github.com/go-gl/glfw") {
+ return cloneActual(dirname, basedir, "https://github.com/go-gl/glfw")
+ }
return "", errors.New("no gopath override here")
}