parse probe-only flag as intended

This commit is contained in:
Matthias Radestock
2017-03-04 11:22:00 +00:00
parent 32550f60f2
commit df41a808c2

View File

@@ -254,9 +254,9 @@ func main() {
// They are also here so they are included in usage, and the probe uses them to decide if to
// publish to localhost.
noApp := flag.Bool("no-app", false, "Don't run the app.")
probeOnly := flag.Bool("app-only", false, "Only run the app")
flag.Bool("probe-only", false, "Only run the probe.")
probeOnly := flag.Bool("probe-only", false, "Only run the app.")
flag.Bool("no-probe", false, "Don't run the probe.")
flag.Bool("app-only", false, "Only run the probe.")
// Probe flags
flag.StringVar(&flags.probe.token, serviceTokenFlag, "", "Token to use to authenticate with cloud.weave.works")