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
4 changes: 2 additions & 2 deletions cli/device/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ var createFlags struct {
func initCreateCommand() *cobra.Command {
createCommand := &cobra.Command{
Use: "create",
Short: "Create a device",
Long: "Create a device for Arduino IoT Cloud",
Short: "Create a device provisioning the onboard secure element with a valid certificate",
Long: "Create a device for Arduino IoT Cloud provisioning the onboard secure element with a valid certificate",
Run: runCreateCommand,
}
createCommand.Flags().StringVarP(&createFlags.port, "port", "p", "", "Device port")
Expand Down
4 changes: 2 additions & 2 deletions cli/device/creategeneric.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ var createGenericFlags struct {
func initCreateGenericCommand() *cobra.Command {
createGenericCommand := &cobra.Command{
Use: "create-generic",
Short: "Create a generic device",
Long: "Create a generic device for Arduino IoT Cloud",
Short: "Create a generic device with password authentication - without secure element - WARNING: less secure",
Long: "Create a generic device with password authentication for Arduino IoT Cloud - without secure element - WARNING: less secure",
Run: runCreateGenericCommand,
}
createGenericCommand.Flags().StringVarP(&createGenericFlags.name, "name", "n", "", "Device name")
Expand Down