Skip to content

Commit 1b3fc66

Browse files
committed
Make upload and compile error report the same string
1 parent fc367b7 commit 1b3fc66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/upload/upload.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ func runProgramAction(pm *packagemanager.PackageManager,
132132
// Find target board and board properties
133133
_, boardPlatform, board, boardProperties, buildPlatform, err := pm.ResolveFQBN(fqbn)
134134
if err != nil {
135-
return fmt.Errorf("incorrect FQBN: %s", err)
135+
return fmt.Errorf("Error resolving FQBN: %s", err)
136136
}
137137
logrus.
138138
WithField("boardPlatform", boardPlatform).

0 commit comments

Comments
 (0)