From 96b68fc50fc0a4e2b23fe219428f792243f9fd05 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Sat, 3 Feb 2018 21:51:28 +0100 Subject: [PATCH] convert SSH_KEY from PosixPath to str --- travis/compile_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/compile_all.py b/travis/compile_all.py index f72c357..cf57e74 100755 --- a/travis/compile_all.py +++ b/travis/compile_all.py @@ -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)