We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f89fc5f commit af35b69Copy full SHA for af35b69
1 file changed
.appveyor.yml
@@ -56,11 +56,11 @@ install:
56
- cd c:\projects\wmi-scripting
57
58
- IF "%DEPLOY_DOCS%" == "true" (
59
- powershell -command "
60
- $fileContent = '-----BEGIN RSA PRIVATE KEY-----`n'
61
- $fileContent += $env:priv_key.Replace(' ', '`n')
62
- $fileContent += '`n-----END RSA PRIVATE KEY-----`n'
63
- Set-Content $env:userprofile\.ssh\id_rsa $fileContent" &&
+ powershell -command "&{
+ $fileContent = '-----BEGIN RSA PRIVATE KEY-----`n';
+ $fileContent += $env:priv_key.Replace(' ', '`n');
+ $fileContent += '`n-----END RSA PRIVATE KEY-----`n';
+ Set-Content $env:userprofile\.ssh\id_rsa $fileContent }" &&
64
git submodule update --init --recursive &&
65
git config --global user.email "%GIT_EMAIL%" &&
66
git config --global user.name "%GIT_EMAIL%" &&
0 commit comments