diff options
author | Joubert RedRat <me+github@redrat.com.br> | 2016-11-07 11:26:13 -0200 |
---|---|---|
committer | Andrey Nering <andrey.nering@gmail.com> | 2016-11-07 13:26:19 -0200 |
commit | 28bee2810221f9da62443e4dc1c52199f1dc4d1b (patch) | |
tree | 3641d17c8cdad4d58a91294e32a28f57d688c37f /modules/setting | |
parent | f430d26f7ee7530e9613e6fe5055bec12d7f4d92 (diff) | |
download | gitea-28bee2810221f9da62443e4dc1c52199f1dc4d1b.tar.gz gitea-28bee2810221f9da62443e4dc1c52199f1dc4d1b.zip |
Replace Gogs to Gitea in installation options
Diffstat (limited to 'modules/setting')
-rw-r--r-- | modules/setting/setting.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 923c45674c..f45a4e090f 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -493,7 +493,7 @@ func NewContext() { // Determine and create root git repository path. sec = Cfg.Section("repository") Repository.DisableHTTPGit = sec.Key("DISABLE_HTTP_GIT").MustBool() - RepoRootPath = sec.Key("ROOT").MustString(path.Join(homeDir, "gogs-repositories")) + RepoRootPath = sec.Key("ROOT").MustString(path.Join(homeDir, "gitea-repositories")) forcePathSeparator(RepoRootPath) if !filepath.IsAbs(RepoRootPath) { RepoRootPath = path.Join(workDir, RepoRootPath) |