1
0
Fork 0
forked from forgejo/forgejo

clear comments

This commit is contained in:
Lunny Xiao 2014-06-29 22:31:46 +08:00
parent 99713e1180
commit be123588ce
2 changed files with 2 additions and 13 deletions

View file

@ -9,6 +9,7 @@ import (
"os"
"os/exec"
"path"
"path/filepath"
"strconv"
"strings"
@ -30,7 +31,7 @@ var CmdServ = cli.Command{
func setup(logPath string) {
setting.NewConfigContext()
log.NewGitLogger(path.Join(setting.LogRootPath, logPath))
log.NewGitLogger(filepath.Join(setting.LogRootPath, logPath))
models.LoadModelsConfig()
if models.UseSQLite3 {
@ -166,7 +167,6 @@ func runServ(k *cli.Context) {
return
}
//models.SetRepoEnvs(user.Id, user.Name, repoName, repoUserName)
uuid := uuid.NewV4().String()
os.Setenv("uuid", uuid)