Skip to content

Commit

Permalink
Change option autorun into autostart for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
dullgiulio committed Dec 19, 2014
1 parent 1117a62 commit dbf67b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/open.go
Expand Up @@ -22,7 +22,7 @@ func (c *CommandOpen) Init(fs *flag.FlagSet) bool {
fs.Int64Var(&config.C.RingbufSize, "ringbuf-size", config.C.RingbufSize, "Max number of lines contained in a ringbuffer")
fs.Int64Var(&config.C.MaxLineSize, "line-size", config.C.MaxLineSize, "Max size in bytes of a single line read from stdin")
fs.Int64Var(&config.C.RingbufLogSize, "ringbuf-log-size", config.C.RingbufSize, "Max number of lines for log scrollback")
fs.BoolVar(&config.C.AutoRun, "autorun", config.C.AutoRun, "Automatically run new commands when added")
fs.BoolVar(&config.C.AutoRun, "autostart", config.C.AutoRun, "Automatically run new commands when added")
fs.BoolVar(&config.C.PrintLog, "verbose", config.C.PrintLog, "Print logging on the command line")
return true
}
Expand Down

0 comments on commit dbf67b8

Please sign in to comment.