From 859009259a5d02a09b05094070b6db063bfc5a37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20H=C3=B6ppner?= Date: Tue, 14 Feb 2017 12:39:55 +0000 Subject: [PATCH] Typo in LocalCopyPath (#4122) This won't fix any bugs, but a typo is a typo. --- models/repo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/repo.go b/models/repo.go index 9278499b6..b24001e82 100644 --- a/models/repo.go +++ b/models/repo.go @@ -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.