Typo in LocalCopyPath (#4122)

This won't fix any bugs, but a typo is a typo.
pull/3802/merge
Christian Höppner 2017-02-14 12:39:55 +00:00 committed by 无闻
parent 4c5255f5ad
commit 859009259a
1 changed files with 1 additions and 1 deletions

View File

@ -468,7 +468,7 @@ func (repo *Repository) DescriptionHtml() template.HTML {
}
func (repo *Repository) LocalCopyPath() string {
return path.Join(setting.AppDataPath, "tmp/local-rpeo", com.ToStr(repo.ID))
return path.Join(setting.AppDataPath, "tmp/local-repo", com.ToStr(repo.ID))
}
// UpdateLocalCopy pulls latest changes of given branch from repoPath to localPath.