Skip to content

Commit 528f72a

Browse files
committedOct 19, 2018
Fixed error message in packagemanager.ResolveFQBN()
1 parent 3c5aeec commit 528f72a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎arduino/cores/packagemanager/package_manager.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ func (pm *PackageManager) ResolveFQBN(fqbn *cores.FQBN) (
162162
platformRelease := pm.GetInstalledPlatformRelease(platform)
163163
if platformRelease == nil {
164164
return targetPackage, nil, nil, nil, nil,
165-
fmt.Errorf("platform %s is not installed", platformRelease)
165+
fmt.Errorf("platform %s is not installed", platform)
166166
}
167167

168168
// Find board

0 commit comments

Comments
 (0)
Please sign in to comment.