1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-09 20:17:21 +00:00

Merge branch 'dev' of github.com:gogits/gogs into dev

Conflicts:
	conf/app.ini
This commit is contained in:
lunnyxiao
2014-09-17 12:04:18 +08:00
20 changed files with 659 additions and 48 deletions

View File

@ -10,6 +10,7 @@ import (
"os/exec"
"path"
"path/filepath"
"runtime"
"strings"
"time"
@ -99,12 +100,14 @@ var (
CustomPath string // Custom directory path.
ProdMode bool
RunUser string
IsWindows bool
// I18n settings.
Langs, Names []string
)
func init() {
IsWindows = runtime.GOOS == "windows"
log.NewLogger(0, "console", `{"level": 0}`)
}