1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-18 09:15:49 +00:00
This commit is contained in:
Unknown 2014-03-11 22:09:33 -04:00
parent c2e7e93e0c
commit 0b5f6b176f

View File

@ -153,7 +153,7 @@ func initRepository(f string, user *User, repo *Repository, initReadme bool, rep
fileName["license"] = "LICENSE"
}
workdir := os.TempDir() + fmt.Sprintf("%d", time.Now().Nanosecond())
workdir := filepath.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()))
os.MkdirAll(workdir, os.ModePerm)
sig := user.NewGitSig()