db/repo: print more error info

pull/5850/head
Unknwon 2019-11-05 11:01:11 -08:00
parent b40b85e006
commit 83b480761f
No known key found for this signature in database
GPG Key ID: B43718D76E30A238
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ import (
"gogs.io/gogs/internal/setting" "gogs.io/gogs/internal/setting"
) )
const Version = "0.11.96.1026" const Version = "0.11.96.1105"
func init() { func init() {
setting.AppVer = Version setting.AppVer = Version

View File

@ -141,7 +141,7 @@ func NewRepoContext() {
// Set git some configurations. // Set git some configurations.
if _, stderr, err := process.Exec("NewRepoContext(git config --global core.quotepath false)", if _, stderr, err := process.Exec("NewRepoContext(git config --global core.quotepath false)",
"git", "config", "--global", "core.quotepath", "false"); err != nil { "git", "config", "--global", "core.quotepath", "false"); err != nil {
log.Fatal(4, "Fail to execute 'git config --global core.quotepath false': %s", stderr) log.Fatal(2, "Fail to execute 'git config --global core.quotepath false': %v - %s", err, stderr)
} }
RemoveAllWithNotice("Clean up repository temporary data", filepath.Join(setting.AppDataPath, "tmp")) RemoveAllWithNotice("Clean up repository temporary data", filepath.Join(setting.AppDataPath, "tmp"))