From 3b388ba48d9f2ef0bbf299826535afd5b53a02ae Mon Sep 17 00:00:00 2001 From: RKrom Date: Mon, 3 Nov 2014 16:00:17 +0100 Subject: [PATCH] Fix for build script, user is always "appveyor" --- build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.ps1 b/build.ps1 index f4fa0eef1..2f5e9e5d9 100644 --- a/build.ps1 +++ b/build.ps1 @@ -218,7 +218,7 @@ Function TagCode { $fileContent += $key.substring($i*64, $min) + "`n"; } $fileContent += "-----END RSA PRIVATE KEY-----" + "`n" - Set-Content c:\users\greenshot\.ssh\id_rsa $fileContent + Set-Content c:\users\appveyor\.ssh\id_rsa $fileContent Write-Host "Tagging repo with $fileversion" git tag -a $fileversion -m 'Build from AppVeyor' Write-Host "Pushing tags to remote."