diff --git a/slpkg/binaries/install.py b/slpkg/binaries/install.py index f717e016..fece4f32 100644 --- a/slpkg/binaries/install.py +++ b/slpkg/binaries/install.py @@ -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 diff --git a/slpkg/downloader.py b/slpkg/downloader.py index 8f5c52f0..14c8d3aa 100644 --- a/slpkg/downloader.py +++ b/slpkg/downloader.py @@ -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 = '' diff --git a/slpkg/sbos/slackbuild.py b/slpkg/sbos/slackbuild.py index c8ac506a..0a986f98 100644 --- a/slpkg/sbos/slackbuild.py +++ b/slpkg/sbos/slackbuild.py @@ -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()