mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-26 19:58:50 +01:00
Updated for pattern
This commit is contained in:
parent
6032c63236
commit
8be6761d1b
1 changed files with 3 additions and 1 deletions
|
@ -81,12 +81,14 @@ class Slackbuilds(Configs):
|
|||
|
||||
def creating_dependencies_for_build(self):
|
||||
""" List with the dependencies. """
|
||||
pattern = f'*{self.sbo_repo_tag}'
|
||||
|
||||
for deps in self.sbos.values():
|
||||
for dep in deps:
|
||||
|
||||
# Checks if the package was installed and skipped.
|
||||
if (self.flag_skip_installed in self.flags and
|
||||
self.utils.is_installed(dep, pattern=f'*{self.sbo_repo_tag}')):
|
||||
self.utils.is_installed(dep, pattern)):
|
||||
continue
|
||||
|
||||
self.dependencies.append(dep)
|
||||
|
|
Loading…
Add table
Reference in a new issue