Commit 528f72a9 authored by Cristian Maglie's avatar Cristian Maglie

Fixed error message in packagemanager.ResolveFQBN()

parent 3c5aeec1
......@@ -162,7 +162,7 @@ func (pm *PackageManager) ResolveFQBN(fqbn *cores.FQBN) (
platformRelease := pm.GetInstalledPlatformRelease(platform)
if platformRelease == nil {
return targetPackage, nil, nil, nil, nil,
fmt.Errorf("platform %s is not installed", platformRelease)
fmt.Errorf("platform %s is not installed", platform)
}
// Find board
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment