Compare commits

...

1 Commits

Author SHA1 Message Date
7a3acfe5c1 fix: add handling len(pkgs) == 0 2025-03-14 19:38:58 +03:00

@ -152,6 +152,10 @@ func checkForUpdates(
return nil, err
}
if len(pkgs) == 0 {
continue
}
pkg := pkgs[0]
repoVer := pkg.Version