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 72bdf7e commit 82de56dCopy full SHA for 82de56d
images/macos/helpers/Xcode.Installer.psm1
@@ -30,7 +30,7 @@ function Invoke-DownloadXcodeArchive {
30
$tempXipDirectory = New-Item -Path $DownloadDirectory -Name "Xcode$Version" -ItemType "Directory"
31
32
$xcodeFileName = 'Xcode-{0}.xip' -f $Version
33
- $xcodeUri = '{0}{1}{2}'-f ${env:XCODE_INSTALL_STORAGE_URL}, $xcodeFileName, ${env:XCODE_INSTALL_SAS}
+ $xcodeUri = '{0}{1}?{2}'-f ${env:XCODE_INSTALL_STORAGE_URL}, $xcodeFileName, ${env:XCODE_INSTALL_SAS}
34
35
Start-DownloadWithRetry -Url $xcodeUri -DownloadPath $tempXipDirectory.FullName -Name $xcodeFileName
36
return $tempXipDirectory
0 commit comments