Skip to content

Commit

Permalink
[Ubuntu] Change destination for toolcache assets (#8485)
Browse files Browse the repository at this point in the history
  • Loading branch information
vpolikarpov-akvelon authored Oct 9, 2023
1 parent 99642f1 commit 2ac4c5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/linux/scripts/installers/Install-Toolset.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 2ac4c5a

Please sign in to comment.