Fixing small typo (#4878)

This commit is contained in:
Lucas Mior
2022-01-13 03:53:31 -03:00
committed by GitHub
parent 02b0bf3e1a
commit 59bc59f568

View File

@@ -90,7 +90,7 @@ function Install-JavaJDK {
Write-Host "Creating Java '${fullJavaVersion}' folder in '${javaVersionPath}'"
New-Item -ItemType Directory -Path $javaVersionPath -Force | Out-Null
# Complete the installation by extarcting Java binaries to toolcache and creating the complete file
# Complete the installation by extracting Java binaries to toolcache and creating the complete file
Extract-7Zip -Path $archivePath -DestinationPath $javaVersionPath
Invoke-SBWithRetry -Command {
Get-ChildItem -Path $javaVersionPath | Rename-Item -NewName $javaArchPath -ErrorAction Stop