mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-27 09:58:10 +01:00
Fix for split
This commit is contained in:
parent
08b16023bf
commit
76f051d1d3
1 changed files with 2 additions and 2 deletions
|
@ -72,9 +72,9 @@ class DownloadOnly(Configs):
|
||||||
|
|
||||||
def save_slackbuild_sources(self, name: str) -> None:
|
def save_slackbuild_sources(self, name: str) -> None:
|
||||||
if self.os_arch == 'x86_64' and self.data[name]['download64']:
|
if self.os_arch == 'x86_64' and self.data[name]['download64']:
|
||||||
sources: tuple = self.data[name]['download64'].split()
|
sources: tuple = self.data[name]['download64']
|
||||||
else:
|
else:
|
||||||
sources: tuple = self.data[name]['download'].split()
|
sources: tuple = self.data[name]['download']
|
||||||
self.urls[name] = (sources, Path(self.build_path, name))
|
self.urls[name] = (sources, Path(self.build_path, name))
|
||||||
|
|
||||||
def copy_slackbuild_scripts(self, name: str) -> None:
|
def copy_slackbuild_scripts(self, name: str) -> None:
|
||||||
|
|
Loading…
Reference in a new issue