Merge pull request #116 from kiwix/ssh_key
convert SSH_KEY from PosixPath to str
This commit is contained in:
commit
391a0f5494
|
@ -68,7 +68,7 @@ def make_archive(archive_name, file_to_archives):
|
|||
|
||||
|
||||
def scp(what, where):
|
||||
command = ['scp', '-i', SSH_KEY, what, where]
|
||||
command = ['scp', '-i', str(SSH_KEY), what, where]
|
||||
subprocess.check_call(command)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue