fix: AUR optinal dep not found among installed apps

This commit is contained in:
Vinicius Moreira
2019-09-19 14:33:51 -03:00
parent a900789c9d
commit 94031588b0
3 changed files with 13 additions and 3 deletions

View File

@@ -100,7 +100,7 @@ class ArchPackage(SoftwarePackage):
def can_be_run(self) -> bool:
# only returns if there is a desktop entry set for the application to avoid running command-line applications
return bool(self.desktop_entry)
return bool(self.command) and bool(self.desktop_entry)
def get_publisher(self):
return self.maintainer