Skip to content

Commit f89fc5f

Browse files
committed
Attempt to conditionally deploy docs
1 parent 72e1ab2 commit f89fc5f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ install:
5757

5858
- IF "%DEPLOY_DOCS%" == "true" (
5959
powershell -command "
60-
$fileContent = `"-----BEGIN RSA PRIVATE KEY-----`n`"
61-
$fileContent += $env:priv_key.Replace(' ', `"`n`")
62-
$fileContent += `"`n-----END RSA PRIVATE KEY-----`n`"
60+
$fileContent = '-----BEGIN RSA PRIVATE KEY-----`n'
61+
$fileContent += $env:priv_key.Replace(' ', '`n')
62+
$fileContent += '`n-----END RSA PRIVATE KEY-----`n'
6363
Set-Content $env:userprofile\.ssh\id_rsa $fileContent" &&
6464
git submodule update --init --recursive &&
6565
git config --global user.email "%GIT_EMAIL%" &&

0 commit comments

Comments
 (0)