Skip to content
This repository has been archived by the owner on Jul 26, 2023. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
willibrandon committed Oct 30, 2022
1 parent 6aabf45 commit 8462afc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/Install-DotNetSdk.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ if (!$arch) { # Windows Powershell leaves this blank
if ($env:PROCESSOR_ARCHITECTURE -eq 'ARM64') { $arch = 'ARM64' }
}

# ProcessArchitecture returns an value with uppercased letters (X86, X64, Arm64), while the associated .NET SDK/Runtime installation
# ProcessArchitecture returns a value with uppercased letters (X86, X64, Arm64), while the associated .NET SDK/Runtime installation
# file is comprised of an architecture value with lowercased letters (dotnet-sdk-6.0.402-win-x64.zip). Lowercase the architecture value
# so that we construct a proper .NET SDK/Runtime Uri.
$arch = $arch.ToString().ToLower();
Expand Down

0 comments on commit 8462afc

Please sign in to comment.