From 2ac4c5a6fd017a898c0d6e3ae049b074c46e5f1d Mon Sep 17 00:00:00 2001 From: Vasilii Polikarpov <126792224+vpolikarpov-akvelon@users.noreply.github.com> Date: Mon, 9 Oct 2023 15:47:15 +0200 Subject: [PATCH] [Ubuntu] Change destination for toolcache assets (#8485) --- images/linux/scripts/installers/Install-Toolset.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/linux/scripts/installers/Install-Toolset.ps1 b/images/linux/scripts/installers/Install-Toolset.ps1 index e53bf87b3..87c14f512 100644 --- a/images/linux/scripts/installers/Install-Toolset.ps1 +++ b/images/linux/scripts/installers/Install-Toolset.ps1 @@ -14,7 +14,7 @@ Function Install-Asset { wget $ReleaseAsset.download_url -nv --retry-connrefused --tries=10 Write-Host "Extract $($ReleaseAsset.filename) content..." - $assetFolderPath = Join-Path $env:INSTALLER_SCRIPT_FOLDER $($ReleaseAsset.filename) + $assetFolderPath = Join-Path "/tmp" $($ReleaseAsset.filename) New-Item -ItemType Directory -Path $assetFolderPath tar -xzf $ReleaseAsset.filename -C $assetFolderPath