diff --git a/dospin.go b/dospin.go index 2c1b33c..684c860 100644 --- a/dospin.go +++ b/dospin.go @@ -24,8 +24,8 @@ type cmdOptions struct { func parseCmdOptions() cmdOptions { var o cmdOptions - flag.StringVar(&o.config, "config", "dospin.json", "Path to the dospin config file") flag.StringVar(&o.cmd, "cmd", CMD_SERVE, "Mode to run command in ("+CMD_SERVE+","+CMD_SPINDOWNALL+")") + flag.StringVar(&o.config, "config", "dospin.json", "Path to the dospin config file") flag.Parse() return o }