File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ Usage:
253
253
arduino-cli core [command]
254
254
255
255
Examples:
256
- arduino core update-index # to update the package index file.
256
+ arduino-cli core update-index # to update the package index file.
257
257
258
258
Available Commands:
259
259
download Downloads one or more cores and corresponding tool dependencies.
@@ -272,4 +272,3 @@ Global Flags:
272
272
Use " arduino-cli core [command] --help" for more information about a command.
273
273
274
274
```
275
-
Original file line number Diff line number Diff line change @@ -33,9 +33,10 @@ func initInstallCommand() *cobra.Command {
33
33
Use : "install PACKAGER:ARCH[@VERSION] ..." ,
34
34
Short : "Installs one or more cores and corresponding tool dependencies." ,
35
35
Long : "Installs one or more cores and corresponding tool dependencies." ,
36
- Example : "" +
37
- "arduino core install arduino:samd # to download the latest version of arduino SAMD core." +
38
- "arduino core install arduino:samd=1.6.9 # for a specific version (in this case 1.6.9)." ,
36
+ Example : " # download the latest version of arduino SAMD core.\n " +
37
+ " " + commands .AppName + " core install arduino:samd\n \n " +
38
+ " # download a specific version (in this case 1.6.9).\n " +
39
+ " " + commands .AppName + " core install arduino:samd=1.6.9" ,
39
40
Args : cobra .MinimumNArgs (1 ),
40
41
Run : runInstallCommand ,
41
42
}
You can’t perform that action at this time.
0 commit comments