From d6b3c1326732f456803de0dc2391a756dbd4403f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Trond=20Jakob=20Sj=C3=B8vang?= Date: Thu, 22 May 2025 14:35:23 +0200 Subject: [PATCH] fix spelling error when retrieving github release returns an error --- src/ALZ/Private/Shared/Get-GithubRelease.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ALZ/Private/Shared/Get-GithubRelease.ps1 b/src/ALZ/Private/Shared/Get-GithubRelease.ps1 index abda301e..977c68a2 100644 --- a/src/ALZ/Private/Shared/Get-GithubRelease.ps1 +++ b/src/ALZ/Private/Shared/Get-GithubRelease.ps1 @@ -73,7 +73,7 @@ function Get-GithubRelease { # Handle transient errors like throttling if($statusCode -ge 400 -and $statusCode -le 599) { - Write-InformationColored "Retrying as got the Status Code $statusCode, which may be a tranisent error." -ForegroundColor Yellow -InformationAction Continue + Write-InformationColored "Retrying as got the Status Code $statusCode, which may be a transient error." -ForegroundColor Yellow -InformationAction Continue $releaseData = Invoke-RestMethod $repoReleaseUrl -RetryIntervalSec 3 -MaximumRetryCount 100 }