mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-02-05 08:46:20 +01:00
Updated for file pattern
This commit is contained in:
parent
6fd1d0b6be
commit
64b68e12b3
1 changed files with 2 additions and 1 deletions
|
@ -122,7 +122,8 @@ class Slackbuilds(Configs):
|
||||||
|
|
||||||
def is_for_skipped(self, sbo):
|
def is_for_skipped(self, sbo):
|
||||||
""" Condition to check if slackbuild is for skipped. """
|
""" Condition to check if slackbuild is for skipped. """
|
||||||
return (not self.utils.is_installed(sbo, self.file_pattern) or self.utils.is_repo_version_bigger(sbo) or
|
return (not self.utils.is_installed(sbo, self.file_pattern) or
|
||||||
|
self.utils.is_repo_version_bigger(sbo, self.file_pattern) or
|
||||||
self.mode == 'build' or self.flag_reinstall in self.flags)
|
self.mode == 'build' or self.flag_reinstall in self.flags)
|
||||||
|
|
||||||
def download_slackbuilds(self):
|
def download_slackbuilds(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue