Skip to content

Commit

Permalink
Fixed output channel for stderr in sketch preprocessing
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaglie committed Jan 9, 2025
1 parent 1b995f2 commit 5ee2d75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/arduino/builder/preprocess_sketch.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func (b *Builder) preprocessSketch(includes paths.PathList) error {
if b.logger.Verbose() {
b.logger.WriteStdout(result.Stdout())
}
b.logger.WriteStdout(result.Stderr())
b.logger.WriteStderr(result.Stderr())
b.diagnosticStore.Parse(result.Args(), result.Stderr())
}

Expand Down

0 comments on commit 5ee2d75

Please sign in to comment.