summaryrefslogtreecommitdiffstats
path: root/cmd/update.go
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-06-20 01:14:54 -0400
committerUnknown <joe2010xtmf@163.com>2014-06-20 01:14:54 -0400
commit8bfa7ae7453e56191aa6f7de8067d5b6bb5a4a8b (patch)
treef96bf4166b78a123997a3eb3026cb347b5c3bcc6 /cmd/update.go
parent6c8d630bef3a58860237856c648e56f4b9cea97d (diff)
downloadgitea-8bfa7ae7453e56191aa6f7de8067d5b6bb5a4a8b.tar.gz
gitea-8bfa7ae7453e56191aa6f7de8067d5b6bb5a4a8b.zip
Remove qiniu/log
Diffstat (limited to 'cmd/update.go')
-rw-r--r--cmd/update.go20
1 files changed, 4 insertions, 16 deletions
diff --git a/cmd/update.go b/cmd/update.go
index b8686a3e6e..d0e0acded9 100644
--- a/cmd/update.go
+++ b/cmd/update.go
@@ -6,14 +6,12 @@ package cmd
import (
"os"
- "path"
"strconv"
"github.com/codegangsta/cli"
- qlog "github.com/qiniu/log"
"github.com/gogits/gogs/models"
- "github.com/gogits/gogs/modules/setting"
+ "github.com/gogits/gogs/modules/log"
)
var CmdUpdate = cli.Command{
@@ -24,33 +22,23 @@ var CmdUpdate = cli.Command{
Flags: []cli.Flag{},
}
-func updateEnv(refName, oldCommitId, newCommitId string) {
- os.Setenv("refName", refName)
- os.Setenv("oldCommitId", oldCommitId)
- os.Setenv("newCommitId", newCommitId)
- qlog.Info("set envs:", refName, oldCommitId, newCommitId)
-}
-
func runUpdate(c *cli.Context) {
cmd := os.Getenv("SSH_ORIGINAL_COMMAND")
if cmd == "" {
return
}
- setup(path.Join(setting.LogRootPath, "update.log"))
+ setup("update.log")
args := c.Args()
if len(args) != 3 {
- qlog.Fatal("received less 3 parameters")
+ log.GitLogger.Fatal("received less 3 parameters")
} else if args[0] == "" {
- qlog.Fatal("refName is empty, shouldn't use")
+ log.GitLogger.Fatal("refName is empty, shouldn't use")
}
- //updateEnv(args[0], args[1], args[2])
-
userName := os.Getenv("userName")
userId, _ := strconv.ParseInt(os.Getenv("userId"), 10, 64)
- //repoId := os.Getenv("repoId")
repoUserName := os.Getenv("repoUserName")
repoName := os.Getenv("repoName")