mirror of
https://github.com/Jguer/yay.git
synced 2024-11-07 01:27:21 +01:00
Merge branch 'use-pkgname-to-search-for-saved-package-info' of https://github.com/maximbaz/yay into maximbaz-use-pkgname-to-search-for-saved-package-info
This commit is contained in:
commit
7d915b14a2
@ -119,9 +119,9 @@ func CheckUpdates(foreign map[string]alpm.Package) (toUpdate []string) {
|
||||
return
|
||||
}
|
||||
|
||||
func inStore(url string) *Info {
|
||||
func inStore(pkgName string) *Info {
|
||||
for i, e := range savedInfo {
|
||||
if url == e.URL {
|
||||
if pkgName == e.Package {
|
||||
return &savedInfo[i]
|
||||
}
|
||||
}
|
||||
@ -156,7 +156,7 @@ func BranchInfo(pkgName string, owner string, repo string) (err error) {
|
||||
|
||||
_ = json.NewDecoder(r.Body).Decode(&newRepo)
|
||||
|
||||
packinfo := inStore(url)
|
||||
packinfo := inStore(pkgName)
|
||||
|
||||
for _, e := range newRepo {
|
||||
if e.Name == "master" {
|
||||
|
Loading…
Reference in New Issue
Block a user