Fixed for find all installed

This commit is contained in:
Dimitris Zlatanidis 2023-04-03 12:47:35 +03:00
parent 78fc810726
commit 7218820f06
2 changed files with 2 additions and 1 deletions

View file

@ -4,6 +4,7 @@ Updated:
Fixed:
- Upgrade dependencies without -r option
- Patch slackbuild repo tag
- File pattern '*' for find all installed
4.7.1 - 02/04/2023
Fixed:

View file

@ -32,7 +32,7 @@ class FindInstalled(Configs):
for pkg in packages:
for package in self.installed:
if pkg in package:
if pkg in package or pkg == '*':
matching.append(package)
self.matched(matching)