Add a check for the setting of watch flag in config file

Fixes #1074
This commit is contained in:
Scott C Wilson 2015-07-17 20:42:09 -04:00 committed by Bjørn Erik Pedersen
parent 03a7016104
commit c00a1fcb7f
1 changed files with 4 additions and 0 deletions

View File

@ -71,6 +71,10 @@ func server(cmd *cobra.Command, args []string) {
viper.Set("Watch", true)
}
if viper.GetBool("watch") {
serverWatch = true
}
l, err := net.Listen("tcp", net.JoinHostPort(serverInterface, strconv.Itoa(serverPort)))
if err == nil {
l.Close()