We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
core search
1 parent cd2fa29 commit 1f28f25Copy full SHA for 1f28f25
commands/core/search.go
@@ -55,7 +55,7 @@ func PlatformSearch(instanceID int32, searchArgs string, allVersions bool) (*rpc
55
}
56
57
// platform has a valid release, check if it matches the search arguments
58
- if match(platform.Name, searchArgs) || match(platform.Architecture, searchArgs) {
+ if match(platform.Name, searchArgs) || match(platform.Architecture, searchArgs) || match(platform.String(), searchArgs) {
59
if allVersions {
60
res = append(res, platform.GetAllReleases()...)
61
} else {
0 commit comments