diff options
author | 无闻 <u@gogs.io> | 2015-02-08 20:22:02 -0500 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2015-02-08 20:22:02 -0500 |
commit | cd0ee35b3f887cc4ab6ba16cc2d955bfae607678 (patch) | |
tree | bbe4ad9e924700d35833daf4f681a568dad278f5 /cmd/update.go | |
parent | 3a44143b81aa050f53d5e0e2c87d4a84345cd94e (diff) | |
parent | 1ab09e4f1b27789121dfba9a6c6e4aa0011ab215 (diff) |
Merge pull request #905 from phsmit/conf_on_cli
Add option to provide configuration file on command line
Diffstat (limited to 'cmd/update.go')
-rw-r--r-- | cmd/update.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cmd/update.go b/cmd/update.go index cc55693e..2ea7e942 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -11,6 +11,7 @@ import ( "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/log" + "github.com/gogits/gogs/modules/setting" ) var CmdUpdate = cli.Command{ @@ -18,10 +19,15 @@ var CmdUpdate = cli.Command{ Usage: "This command should only be called by SSH shell", Description: `Update get pushed info and insert into database`, Action: runUpdate, - Flags: []cli.Flag{}, + Flags: []cli.Flag{ + cli.StringFlag{"config, c", "custom/conf/app.ini", "Configuration file", ""}, + }, } func runUpdate(c *cli.Context) { + if c.IsSet("config") { + setting.CustomConf = c.String("config") + } cmd := os.Getenv("SSH_ORIGINAL_COMMAND") if cmd == "" { return |