We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99642f1 commit 2ac4c5aCopy full SHA for 2ac4c5a
images/linux/scripts/installers/Install-Toolset.ps1
@@ -14,7 +14,7 @@ Function Install-Asset {
14
wget $ReleaseAsset.download_url -nv --retry-connrefused --tries=10
15
16
Write-Host "Extract $($ReleaseAsset.filename) content..."
17
- $assetFolderPath = Join-Path $env:INSTALLER_SCRIPT_FOLDER $($ReleaseAsset.filename)
+ $assetFolderPath = Join-Path "/tmp" $($ReleaseAsset.filename)
18
New-Item -ItemType Directory -Path $assetFolderPath
19
tar -xzf $ReleaseAsset.filename -C $assetFolderPath
20
0 commit comments