diff options
author | Richie B2B <github@vdberg.org> | 2016-12-16 17:00:15 +0100 |
---|---|---|
committer | Thomas Boerger <thomas@webhippie.de> | 2016-12-16 17:00:15 +0100 |
commit | 0d6e88baef084e1783958d99aace1fc835d7b7f2 (patch) | |
tree | 9b8640c0ba31eb2c82f86afa81ee03d43c988b30 /models/repo.go | |
parent | b11843b8dc811fa0cedd968f7c337e5d14ab9492 (diff) | |
download | gitea-0d6e88baef084e1783958d99aace1fc835d7b7f2.tar.gz gitea-0d6e88baef084e1783958d99aace1fc835d7b7f2.zip |
Fix typo (#407)
Diffstat (limited to 'models/repo.go')
-rw-r--r-- | models/repo.go | 2 |
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. |