Skip to content

Commit ab16a2b

Browse files
author
Mattia Bertorello
committed
Convert error to lowercase
1 parent 30057ce commit ab16a2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: arduino/cores/status.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ func (tdep ToolDependency) extractRelease(sc Packages) (*ToolRelease, error) {
129129
}
130130
release, exists := tool.Releases[tdep.ToolVersion.String()]
131131
if !exists {
132-
return nil, errors.New("release Not Found")
132+
return nil, errors.New("release not found")
133133
}
134134
return release, nil
135135
}

0 commit comments

Comments
 (0)