Skip to content

Commit

Permalink
Fix stupid typo
Browse files Browse the repository at this point in the history
  • Loading branch information
timfel committed Aug 18, 2015
1 parent cf4a700 commit 0e5a93a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .appveyor/rsqueak-upload.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function uploadRsqueak {
Write-Host "Uploading $fullpath to $url"
$bytes = [System.Text.Encoding]::ASCII.GetBytes($env:DeployCredentials)
$base64 = [System.Convert]::ToBase64String($bytes)
$basicAuthValue = "Basic $base64
$basicAuthValue = "Basic $base64"
$headers = @{ Authorization = $basicAuthValue }
Invoke-WebRequest -Method PUT -Uri $url -InFile $fullpath -Headers $headers
}
Expand All @@ -35,7 +35,7 @@ function uploadRsqueakLatest {
Write-Host "Uploading $fullpath to $url"
$bytes = [System.Text.Encoding]::ASCII.GetBytes($env:DeployCredentials)
$base64 = [System.Convert]::ToBase64String($bytes)
$basicAuthValue = "Basic $base64
$basicAuthValue = "Basic $base64"
$headers = @{ Authorization = $basicAuthValue }
Invoke-WebRequest -Method PUT -Uri $url -InFile $fullpath -Headers $headers
}
Expand Down

0 comments on commit 0e5a93a

Please sign in to comment.