We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebb0de9 commit fc64888Copy full SHA for fc64888
commands/root/root.go
@@ -153,6 +153,9 @@ func initConfigs() {
153
// Read configuration from parent folders (project config)
154
if pwd, err := paths.Getwd(); err != nil {
155
logrus.WithError(err).Warn("Did not manage to find current path")
156
+ if path := paths.New("arduino-cli.yaml"); path.Exist() {
157
+ readConfigFrom(path)
158
+ }
159
} else {
160
commands.Config.Navigate("/", pwd.String())
161
}
0 commit comments