fix: add handling len(pkgs) == 0

This commit is contained in:
Maxim Slipenko 2025-03-14 19:37:04 +03:00
parent 9cf8af08ab
commit be7323abbc

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