mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-28 05:49:33 +00:00
[TRAVIS] Use travis configuration to add download.kiwix.org to known_host
First, previous commit was broken cause of wrong argument order. Second, travis has a option to handle this case, let's use it.
This commit is contained in:
@ -53,7 +53,7 @@ class Deployer:
|
||||
def deploy(self, *files):
|
||||
if not files:
|
||||
return
|
||||
command = "scp -v -p -i -o StrictHostKeyChecking=no {id_file} {files_list} {host_addr}".format(
|
||||
command = "scp -v -p -i {id_file} {files_list} {host_addr}".format(
|
||||
id_file=self.options.ssh_private_key,
|
||||
files_list=' '.join("'{}'".format(f) for f in files),
|
||||
host_addr="{}:{}".format(self.options.server, self.options.base_path)
|
||||
|
Reference in New Issue
Block a user