main: fix flags to default to config.lua

This commit is contained in:
Chris Sexton 2017-09-07 00:38:41 -04:00 committed by GitHub
parent 87487a518e
commit 0220b8f266
1 changed files with 2 additions and 2 deletions

View File

@ -29,8 +29,8 @@ import (
)
func main() {
var cfile = flag.String("config", "config.json",
"Config file to load. (Defaults to config.json)")
var cfile = flag.String("config", "config.lua",
"Config file to load. (Defaults to config.lua)")
flag.Parse() // parses the logging flags.
c := config.Readconfig(Version, *cfile)