From b3ece636b6f67a8ae9ac890c170273a524b69c49 Mon Sep 17 00:00:00 2001 From: Kirill Vainer Date: Fri, 25 Nov 2016 22:23:55 -0500 Subject: [PATCH] appveyor: fix syntax error --- appveyor.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index cfc9cfcb3..e500d0eb3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -23,8 +23,11 @@ environment: init: - ps: >- $fileContent = "-----BEGIN EC PRIVATE KEY-----`n" + $fileContent += $env:priv_key.Replace(' ', "`n") + $fileContent += "`n-----END EC PRIVATE KEY-----`n" + Set-Content c:\users\appveyor\.ssh\id_rsa $fileContent install: