mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-30 20:34:38 +01:00
Fixed for find all installed
This commit is contained in:
parent
78fc810726
commit
7218820f06
2 changed files with 2 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue