From 71b113cad3fd9c60849aebf5d51a54c645731df8 Mon Sep 17 00:00:00 2001 From: Austin Cherry Date: Fri, 5 Oct 2018 11:09:33 -0500 Subject: [PATCH] TUN-1083: fixed incorrect help menu --- cmd/cloudflared/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/cloudflared/main.go b/cmd/cloudflared/main.go index 0fc33848..e9b296fc 100644 --- a/cmd/cloudflared/main.go +++ b/cmd/cloudflared/main.go @@ -46,6 +46,8 @@ func main() { app := &cli.App{} app.Name = "cloudflared" + app.Usage = "Cloudflare's command-line tool and agent" + app.ArgsUsage = "origin-url" app.Copyright = fmt.Sprintf(`(c) %d Cloudflare Inc. Use is subject to the license agreement at %s`, time.Now().Year(), licenseUrl) app.Version = fmt.Sprintf("%s (built %s)", Version, BuildTime)