Updated for new line

This commit is contained in:
Dimitris Zlatanidis 2023-04-30 22:24:05 +03:00
parent 4accdfe1a2
commit 6bed88bac4
3 changed files with 2 additions and 3 deletions

View file

@ -124,6 +124,7 @@ class Packages(Configs):
if pkg_urls:
down = Downloader(self.tmp_slpkg, pkg_urls, self.flags)
down.download()
print()
def continue_install(self, name) -> bool:
""" Skip installed package when the option --skip-installed is applied

View file

@ -43,9 +43,6 @@ class Downloader(Configs):
for url in self.urls:
self.tool(url)
if self.urls and not self.urls[0].startswith('file'):
print()
def tool(self, url: str) -> None:
""" Downloader tools wget, wget2, curl and lftp. """
command: str = ''

View file

@ -193,6 +193,7 @@ class Slackbuilds(Configs):
for pkg, sbo_sources in sources.items():
down_urls = Downloader(Path(self.build_path, pkg), sbo_sources, self.flags)
down_urls.download()
print()
self.checksum_downloads()