You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: spelling error when retrieving github release returns an error (#353)
# Pull Request
## Issue
Issue #, if available:
## Description
replace "transient" with "transient" in the message displayed when
fetching the GitHub release returns an error
## License
By submitting this pull request, I confirm that my contribution is made
under the terms of the projects associated license.
Copy file name to clipboardExpand all lines: src/ALZ/Private/Shared/Get-GithubRelease.ps1
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ function Get-GithubRelease {
73
73
74
74
# Handle transient errors like throttling
75
75
if($statusCode-ge400-and$statusCode-le599) {
76
-
Write-InformationColored"Retrying as got the Status Code $statusCode, which may be a tranisent error."-ForegroundColor Yellow -InformationAction Continue
76
+
Write-InformationColored"Retrying as got the Status Code $statusCode, which may be a transient error."-ForegroundColor Yellow -InformationAction Continue
0 commit comments