We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4277480 commit 9bb222bCopy full SHA for 9bb222b
arduino/sketch/sketch.go
@@ -94,7 +94,10 @@ func New(path *paths.Path) (*Sketch, error) {
94
Metadata: new(Metadata),
95
}
96
97
- projectFile := path.Join("sketch.yml")
+ projectFile := path.Join("sketch.yaml")
98
+ if !projectFile.Exist() {
99
+ projectFile = path.Join("sketch.yml")
100
+ }
101
if projectFile.Exist() {
102
prj, err := LoadProjectFile(projectFile)
103
if err != nil {
0 commit comments