summaryrefslogtreecommitdiffstats
path: root/update.go
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-03-26 09:22:08 -0400
committerUnknown <joe2010xtmf@163.com>2014-03-26 09:22:08 -0400
commit7ab94fe816bd726c995f2937a040c3d8c7898205 (patch)
treefcf84c1e759c158f461af3cc9f7236443f4992d6 /update.go
parent409e4cde7a379bbdbe53367b3726f64b80aed0eb (diff)
downloadgitea-7ab94fe816bd726c995f2937a040c3d8c7898205.tar.gz
gitea-7ab94fe816bd726c995f2937a040c3d8c7898205.zip
Fix issue on windows
Diffstat (limited to 'update.go')
-rw-r--r--update.go26
1 files changed, 13 insertions, 13 deletions
diff --git a/update.go b/update.go
index 5c6d5b28ce..39729937e1 100644
--- a/update.go
+++ b/update.go
@@ -5,18 +5,18 @@
package main
import (
-"os"
-"os/exec"
-"strings"
-"strconv"
-"container/list"
-
-"github.com/codegangsta/cli"
-//"github.com/gogits/gogs/modules/log"
-"github.com/gogits/gogs/models"
-"github.com/gogits/gogs/modules/base"
-"github.com/qiniu/log"
-"github.com/gogits/git"
+ "container/list"
+ "os"
+ "os/exec"
+ "strconv"
+ "strings"
+
+ "github.com/codegangsta/cli"
+ //"github.com/gogits/gogs/modules/log"
+ "github.com/gogits/git"
+ "github.com/gogits/gogs/models"
+ "github.com/gogits/gogs/modules/base"
+ "github.com/qiniu/log"
)
var CmdUpdate = cli.Command{
@@ -103,7 +103,7 @@ func runUpdate(c *cli.Context) {
// if a new branch
if strings.HasPrefix(oldCommitId, "0000000") {
l, err = ref.AllCommits()
-
+
} else {
l = ref.CommitsBetween(newCommit, oldCommit)
}