summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-03-12 21:40:18 -0400
committerUnknown <joe2010xtmf@163.com>2014-03-12 21:40:18 -0400
commit8dd956f88a0d279296e5b5440cde8bd877ca0fea (patch)
tree40710391f6a81a0e99799139984a4795ccaba086
parenta9a5fb45f8b0b31f0219d7a0957db1a43a72f6e0 (diff)
downloadgitea-8dd956f88a0d279296e5b5440cde8bd877ca0fea.tar.gz
gitea-8dd956f88a0d279296e5b5440cde8bd877ca0fea.zip
Move custom dir to custom/
-rw-r--r--.gitignore2
-rw-r--r--modules/base/conf.go5
-rw-r--r--serve.go2
3 files changed, 4 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index 49d19b83d0..0323c29726 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,4 +4,4 @@ gogs
.DS_Store
*.db
*.log
-conf/custom.ini \ No newline at end of file
+custom/ \ No newline at end of file
diff --git a/modules/base/conf.go b/modules/base/conf.go
index 1240448c10..809b2b8c18 100644
--- a/modules/base/conf.go
+++ b/modules/base/conf.go
@@ -37,15 +37,14 @@ func init() {
os.Exit(2)
}
- cfgPathPrefix := filepath.Join(workDir, "conf")
- cfgPath := filepath.Join(cfgPathPrefix, "app.ini")
+ cfgPath := filepath.Join(workDir, "conf/app.ini")
Cfg, err = goconfig.LoadConfigFile(cfgPath)
if err != nil {
fmt.Printf("Cannot load config file '%s'\n", cfgPath)
os.Exit(2)
}
- cfgPath = filepath.Join(cfgPathPrefix, "custom.ini")
+ cfgPath = filepath.Join(workDir, "custom/conf/app.ini")
if com.IsFile(cfgPath) {
if err = Cfg.AppendFiles(cfgPath); err != nil {
fmt.Printf("Cannot load config file '%s'\n", cfgPath)
diff --git a/serve.go b/serve.go
index d4874b3ed6..97b9c567e6 100644
--- a/serve.go
+++ b/serve.go
@@ -58,7 +58,7 @@ func runServ(*cli.Context) {
cmd := os.Getenv("SSH_ORIGINAL_COMMAND")
if cmd == "" {
- printf("Hi %s! You've successfully authenticated, but Gogs does not provide shell access.\n", user.Name)
+ fmt.Printf("Hi %s! You've successfully authenticated, but Gogs does not provide shell access.\n", user.Name)
return
}