summaryrefslogtreecommitdiffstats
path: root/models/repo.go
diff options
context:
space:
mode:
authorRichie B2B <github@vdberg.org>2016-12-16 17:00:15 +0100
committerThomas Boerger <thomas@webhippie.de>2016-12-16 17:00:15 +0100
commit0d6e88baef084e1783958d99aace1fc835d7b7f2 (patch)
tree9b8640c0ba31eb2c82f86afa81ee03d43c988b30 /models/repo.go
parentb11843b8dc811fa0cedd968f7c337e5d14ab9492 (diff)
downloadgitea-0d6e88baef084e1783958d99aace1fc835d7b7f2.tar.gz
gitea-0d6e88baef084e1783958d99aace1fc835d7b7f2.zip
Fix typo (#407)
Diffstat (limited to 'models/repo.go')
-rw-r--r--models/repo.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/repo.go b/models/repo.go
index 603902a19f..6bde92449f 100644
--- a/models/repo.go
+++ b/models/repo.go
@@ -510,7 +510,7 @@ func (repo *Repository) DescriptionHTML() template.HTML {
// LocalCopyPath returns the local repository copy path
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))
}
// UpdateLocalCopyBranch pulls latest changes of given branch from repoPath to localPath.