lib: Update the help text

Give some longer descriptions so they show up nicely for the user.
This commit is contained in:
James Shubin
2021-09-29 02:11:19 -04:00
parent b9741e87bd
commit 9c75c55fa4

View File

@@ -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,
}