mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-09 12:04:15 +02:00
[arch] fix -> AUR: not properly handling AUR package dependencies with specific versions
This commit is contained in:
@@ -1904,7 +1904,13 @@ class ArchManager(SoftwareManager):
|
||||
return missing_deps
|
||||
|
||||
def _handle_missing_deps(self, context: TransactionContext) -> bool:
|
||||
missing_deps = self._list_missing_deps(context)
|
||||
try:
|
||||
missing_deps = self._list_missing_deps(context)
|
||||
except PackageNotFoundException:
|
||||
return False
|
||||
except:
|
||||
traceback.print_exc()
|
||||
return False
|
||||
|
||||
if missing_deps is None:
|
||||
return False # called off by the user
|
||||
|
||||
Reference in New Issue
Block a user