Skip to content

Commit

Permalink
fix(install_info_fetcher: get_aur_pkgs_info): remove manually edited …
Browse files Browse the repository at this point in the history
…pkgbuild from list of aur pkgs to be installed only if it's still still in that list
  • Loading branch information
actionless committed Mar 28, 2022
1 parent 30cba82 commit d034cb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pikaur/install_info_fetcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ def get_aur_pkgs_info(self, aur_packages_versionmatchers: List[str]) -> None:
)
del aur_updates_install_info_by_name[pkg_name]
for pkg_list in self.pkgbuilds_packagelists.values():
if pkg_name in pkg_list:
if pkg_name in pkg_list and pkg_name in aur_updates_install_info_by_name:
del aur_updates_install_info_by_name[pkg_name]
self.aur_updates_install_info += list(aur_updates_install_info_by_name.values())
debug(f"got AUR pkgs install info: {self.aur_updates_install_info=}")
Expand Down

0 comments on commit d034cb2

Please sign in to comment.