summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaromil <jaromil@dyne.org>2017-10-02 20:28:05 +0200
committerJaromil <jaromil@dyne.org>2017-10-02 20:28:05 +0200
commit1633c18b7c44689dfcfeb3ab54b4ba2aa23a82eb (patch)
tree91d497b95ee71432cb7cf1fff815a3d211c230f9
parentb0c7105a7f08389e012ce4882b38030df54cf474 (diff)
hardcoded mirror of git2go v26
git2go head on github breaks and also gopkg has problems with libgit2 submodule so we keep a working version without submodule inside dyne repo and use that from scorsh. Will need manual update in future.
-rw-r--r--Makefile2
-rw-r--r--commits.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5d24c9a..9fa2a00 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ all: scorshd
deps:
go get 'github.com/fsnotify/fsnotify'
- go get 'github.com/libgit2/git2go'
+ go get 'github.com/dyne/git2go.v26'
go get 'gopkg.in/yaml.v2'
go get 'golang.org/x/crypto/openpgp'
diff --git a/commits.go b/commits.go
index 8269e85..7438fdc 100644
--- a/commits.go
+++ b/commits.go
@@ -2,7 +2,7 @@ package main
import (
"fmt"
- "github.com/libgit2/git2go"
+ "github.com/dyne/git2go.v26"
"golang.org/x/crypto/openpgp"
"gopkg.in/yaml.v2"
"log"