Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/arduino-app-cli/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
func NewConfigCmd(cfg config.Configuration) *cobra.Command {
appCmd := &cobra.Command{
Use: "config",
Short: "Manage arduino-app-cli config",
Short: "Manage Arduino App CLI config",
}

appCmd.AddCommand(newConfigGetCmd(cfg))
Expand Down
2 changes: 1 addition & 1 deletion cmd/arduino-app-cli/daemon/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import (
func NewDaemonCmd(cfg config.Configuration, version string) *cobra.Command {
daemonCmd := &cobra.Command{
Use: "daemon",
Short: "Run an HTTP server to expose arduino-app-cli functionality through REST API",
Short: "Run the Arduino App CLI as an HTTP daemon",
Run: func(cmd *cobra.Command, args []string) {
daemonPort, _ := cmd.Flags().GetString("port")

Expand Down
2 changes: 1 addition & 1 deletion cmd/arduino-app-cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func run(configuration cfg.Configuration) error {
defer func() { _ = servicelocator.CloseDockerClient() }()
rootCmd := &cobra.Command{
Use: "arduino-app-cli",
Short: "A CLI to manage the Python app",
Short: "A CLI to manage Arduino Apps",
PersistentPreRun: func(cmd *cobra.Command, args []string) {
format, ok := feedback.ParseOutputFormat(format)
if !ok {
Expand Down
3 changes: 2 additions & 1 deletion cmd/arduino-app-cli/system/system.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ import (

func NewSystemCmd(cfg config.Configuration) *cobra.Command {
cmd := &cobra.Command{
Use: "system",
Use: "system",
Short: "Manage the board’s system configuration",
}

cmd.AddCommand(newDownloadImageCmd(cfg))
Expand Down