From 9c75c55fa4b32c2f1fa31a062ad92ddc8dae61a8 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Wed, 29 Sep 2021 02:11:19 -0400 Subject: [PATCH] lib: Update the help text Give some longer descriptions so they show up nicely for the user. --- lib/cli.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/cli.go b/lib/cli.go index d8e54f7d..f1ff2324 100644 --- a/lib/cli.go +++ b/lib/cli.go @@ -353,7 +353,7 @@ func CLI(program, version string, flags Flags) error { commandRun := &cli.Command{ Name: gapi.CommandRun, Aliases: []string{"r"}, - Usage: "run", + Usage: "Run code on this machine", Subcommands: subCommandsRun, Flags: runFlags, } @@ -364,7 +364,7 @@ func CLI(program, version string, flags Flags) error { commandDeploy := &cli.Command{ Name: gapi.CommandDeploy, Aliases: []string{"d"}, - Usage: "deploy", + Usage: "Deploy code into the cluster", Subcommands: subCommandsDeploy, Flags: deployFlags, } @@ -375,7 +375,7 @@ func CLI(program, version string, flags Flags) error { commandGet := &cli.Command{ Name: gapi.CommandGet, Aliases: []string{"g"}, - Usage: "get", + Usage: "Download code from the internet", Subcommands: subCommandsGet, Flags: getFlags, }