File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ import (
2929func NewConfigCmd (cfg config.Configuration ) * cobra.Command {
3030 appCmd := & cobra.Command {
3131 Use : "config" ,
32- Short : "Manage arduino-app-cli config" ,
32+ Short : "Manage Arduino App CLI config" ,
3333 }
3434
3535 appCmd .AddCommand (newConfigGetCmd (cfg ))
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ import (
3838func NewDaemonCmd (cfg config.Configuration , version string ) * cobra.Command {
3939 daemonCmd := & cobra.Command {
4040 Use : "daemon" ,
41- Short : "Run an HTTP server to expose arduino-app-cli functionality through REST API " ,
41+ Short : "Run the Arduino App CLI as an HTTP daemon " ,
4242 Run : func (cmd * cobra.Command , args []string ) {
4343 daemonPort , _ := cmd .Flags ().GetString ("port" )
4444
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ func run(configuration cfg.Configuration) error {
4848 defer func () { _ = servicelocator .CloseDockerClient () }()
4949 rootCmd := & cobra.Command {
5050 Use : "arduino-app-cli" ,
51- Short : "A CLI to manage the Python app " ,
51+ Short : "A CLI to manage Arduino Apps " ,
5252 PersistentPreRun : func (cmd * cobra.Command , args []string ) {
5353 format , ok := feedback .ParseOutputFormat (format )
5454 if ! ok {
Original file line number Diff line number Diff line change @@ -37,7 +37,8 @@ import (
3737
3838func NewSystemCmd (cfg config.Configuration ) * cobra.Command {
3939 cmd := & cobra.Command {
40- Use : "system" ,
40+ Use : "system" ,
41+ Short : "Manage the board’s system configuration" ,
4142 }
4243
4344 cmd .AddCommand (newDownloadImageCmd (cfg ))
You can’t perform that action at this time.
0 commit comments