Skip to content

Commit

Permalink
Make upload and compile error report the same string
Browse files Browse the repository at this point in the history
  • Loading branch information
facchinm committed Jul 26, 2021
1 parent fc367b7 commit 1b3fc66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/upload/upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func runProgramAction(pm *packagemanager.PackageManager,
// Find target board and board properties
_, boardPlatform, board, boardProperties, buildPlatform, err := pm.ResolveFQBN(fqbn)
if err != nil {
return fmt.Errorf("incorrect FQBN: %s", err)
return fmt.Errorf("Error resolving FQBN: %s", err)
}
logrus.
WithField("boardPlatform", boardPlatform).
Expand Down

0 comments on commit 1b3fc66

Please sign in to comment.