Skip to content

Commit 43b2b66

Browse files
committed
Fixed error message in packagemanager.ResolveFQBN()
1 parent c9dc408 commit 43b2b66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: 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)