diff --git a/cmd/gdqcli/main.go b/cmd/gdqcli/main.go index cb9a8fc..7018845 100644 --- a/cmd/gdqcli/main.go +++ b/cmd/gdqcli/main.go @@ -32,12 +32,12 @@ func main() { log.Fatalln(err) } - if *host != "" { - schedule = schedule.ForHost(*host) - } if *runner != "" { schedule = schedule.ForRunner(*runner) } + if *host != "" { + schedule = schedule.ForHost(*host) + } if *title != "" { schedule = schedule.ForTitle(*title) }