diff options
author | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-02-22 19:12:31 +0800 |
---|---|---|
committer | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-02-22 19:12:31 +0800 |
commit | d3ecd22dbaa2005d97b4630b3dd4ad1155500257 (patch) | |
tree | 33344ba8b0ed7b2450f96aa341308198b067c444 /internal/cmd/web.go | |
parent | 5efbde4fe92cf30799c3c9fd66251dfbc03c4d87 (diff) |
cmd: fix unable to find correct custom config
Diffstat (limited to 'internal/cmd/web.go')
-rw-r--r-- | internal/cmd/web.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/cmd/web.go b/internal/cmd/web.go index 6a61f54a..306a4439 100644 --- a/internal/cmd/web.go +++ b/internal/cmd/web.go @@ -53,7 +53,7 @@ and it takes care of all the other things for you`, Action: runWeb, Flags: []cli.Flag{ stringFlag("port, p", "3000", "Temporary port number to prevent conflict"), - stringFlag("config, c", "custom/conf/app.ini", "Custom configuration file path"), + stringFlag("config, c", "", "Custom configuration file path"), }, } |