From 59bc59f5685228c0a239c6c2bbe5fc2e7f409315 Mon Sep 17 00:00:00 2001 From: Lucas Mior Date: Thu, 13 Jan 2022 03:53:31 -0300 Subject: [PATCH] Fixing small typo (#4878) --- images/win/scripts/Installers/Install-JavaTools.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/win/scripts/Installers/Install-JavaTools.ps1 b/images/win/scripts/Installers/Install-JavaTools.ps1 index 7f8492ef..0cc61a7b 100644 --- a/images/win/scripts/Installers/Install-JavaTools.ps1 +++ b/images/win/scripts/Installers/Install-JavaTools.ps1 @@ -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