瀏覽代碼

Typo in LocalCopyPath (#4122)

This won't fix any bugs, but a typo is a typo.
Christian Höppner 8 年之前
父節點
當前提交
859009259a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      models/repo.go

+ 1 - 1
models/repo.go

@@ -468,7 +468,7 @@ func (repo *Repository) DescriptionHtml() template.HTML {
 }
 }
 
 
 func (repo *Repository) LocalCopyPath() string {
 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.
 // UpdateLocalCopy pulls latest changes of given branch from repoPath to localPath.