Skip to content

Commit a59b4b6

Browse files
committed
fixed error message (lint)
1 parent e24ae02 commit a59b4b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino/cores/packagemanager/install_uninstall.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ func (pm *PackageManager) UninstallTool(toolRelease *cores.ToolRelease) error {
113113

114114
// Safety measure
115115
if !pm.IsManagedToolRelease(toolRelease) {
116-
return fmt.Errorf("Tool %s is not managed by package manager", toolRelease)
116+
return fmt.Errorf("tool %s is not managed by package manager", toolRelease)
117117
}
118118

119119
if err := toolRelease.InstallDir.RemoveAll(); err != nil {

0 commit comments

Comments
 (0)