diff options
author | Sandro Santilli <strk@kbt.io> | 2016-11-06 14:18:34 +0100 |
---|---|---|
committer | Andrey Nering <andrey.nering@gmail.com> | 2016-11-06 11:18:34 -0200 |
commit | 6e4252dad4d162fb582c012efecd29e9fdf5819c (patch) | |
tree | 3aa10bee3fd9f96e042cd299f0d8756abc5dc431 /models/update.go | |
parent | 55a4d46f5d2aa114752ac3880d0d75ed288fea67 (diff) | |
download | gitea-6e4252dad4d162fb582c012efecd29e9fdf5819c.tar.gz gitea-6e4252dad4d162fb582c012efecd29e9fdf5819c.zip |
Replace gogits/git-module dependency with go-gitea/git (#94)
* Replace gogits/git-module dependency with go-gitea/git
Fixes #92
* Remove git alias for git module import (not needed)
Diffstat (limited to 'models/update.go')
-rw-r--r-- | models/update.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/update.go b/models/update.go index 80d222c5d3..e4d6d0d7d4 100644 --- a/models/update.go +++ b/models/update.go @@ -10,7 +10,7 @@ import ( "os/exec" "strings" - git "github.com/gogits/git-module" + "github.com/go-gitea/git" "github.com/go-gitea/gitea/modules/log" ) |