mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
Bugfixes install packages
This commit is contained in:
parent
80e106be2c
commit
e28fa4f3c4
1 changed files with 2 additions and 3 deletions
|
@ -148,13 +148,12 @@ class Slackbuilds:
|
|||
|
||||
def download_slackbuilds_and_build(self):
|
||||
""" Downloads files and sources and starting the build. """
|
||||
inst_ver = '0'
|
||||
|
||||
for sbo in self.install_order:
|
||||
|
||||
package = self.utils.is_installed(sbo)
|
||||
|
||||
if not package or self.utils.is_repo_version_bigger(sbo) or self.mode == 'build' or self.flag_reinstall in self.flags:
|
||||
if (not package or self.utils.is_repo_version_bigger(sbo) or
|
||||
self.mode == 'build' or self.flag_reinstall in self.flags):
|
||||
|
||||
file = f'{sbo}{self.configs.sbo_tar_suffix}'
|
||||
|
||||
|
|
Loading…
Reference in a new issue