mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
Updated for var #158
This commit is contained in:
parent
e2fbd2ad98
commit
68a5f61dfb
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ class Downloader(Configs):
|
|||
command: str = f'{self.downloader} {self.curl_options} "{url}" --output {self.path}/{filename}'
|
||||
|
||||
elif self.downloader == 'lftp':
|
||||
command: str = f'lftp {self.lftp_get_options} {url} -o {self.path}'
|
||||
command: str = f'{self.downloader} {self.lftp_get_options} {url} -o {self.path}'
|
||||
|
||||
else:
|
||||
self.utils.raise_error_message(f"Downloader '{self.downloader}' not supported")
|
||||
|
|
Loading…
Reference in a new issue