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 e6d5328 commit 95ea3a3Copy full SHA for 95ea3a3
internal/arduino/builder/builder.go
@@ -455,8 +455,11 @@ func (b *Builder) build() error {
455
}
456
b.Progress.CompleteStep()
457
458
- if err := b.RunRecipe("recipe.objcopy.pattern", true); err != nil {
459
- return err
+ extensions := b.buildProperties.SubTree("recipe.objcopy").FirstLevelKeys()
+ for _, ext := range extensions {
460
+ if err := b.RunRecipe("recipe.objcopy."+ext+".pattern", true); err != nil {
461
+ return err
462
+ }
463
464
465
0 commit comments