You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -162,7 +162,7 @@ Great! Now we have the Board FQBN (Fully Qualified Board Name) `arduino:samd:mkr
162
162
and the Board Name look good, we are ready to compile and upload the sketch
163
163
164
164
#### Adding 3rd party cores
165
-
To add 3rd party core packages add a link of the additional package to the file `.cli-config.yml`
165
+
To add 3rd party core packages add a link of the additional package to the file `arduino-cli.yaml`
166
166
167
167
If you want to add the ESP8266 core, for example:
168
168
@@ -295,7 +295,7 @@ Flags:
295
295
-h, --help helpfor core
296
296
297
297
Global Flags:
298
-
--config-file string The custom config file (if not specified the default one will be used). (example "/home/megabug/.config/arduino/arduino-cli/.cli-config.yml")
298
+
--config-file string The custom config file (if not specified the default one will be used). (example "/home/megabug/.config/arduino/arduino-cli/arduino-cli.yaml")
299
299
--debug Enables debug output (super verbose, used to debug the CLI).
300
300
--format string The output format, can be [text|json]. (default "text")
Copy file name to clipboardExpand all lines: configs/directories.go
+4-4
Original file line number
Diff line number
Diff line change
@@ -27,21 +27,21 @@ import (
27
27
"github.com/shibukawa/configdir"
28
28
)
29
29
30
-
// getDefaultConfigFilePath returns the default path for .cli-config.yml. It searches the following directories for an existing .cli-config.yml file:
30
+
// getDefaultConfigFilePath returns the default path for arduino-cli.yaml. It searches the following directories for an existing arduino-cli.yaml file:
31
31
// - User level configuration folder(e.g. $HOME/.config/<vendor-name>/<application-name>/setting.json in Linux)
32
32
// - System level configuration folder(e.g. /etc/xdg/<vendor-name>/<application-name>/setting.json in Linux)
33
33
// If it doesn't find one, it defaults to the user level configuration folder
0 commit comments