mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-14 11:49:17 +08:00
21 lines
710 B
PowerShell
21 lines
710 B
PowerShell
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
param([string]$SasToken)
|
|
|
|
if (Test-Path "$PSScriptRoot/utility-prefix.ps1") {
|
|
. "$PSScriptRoot/utility-prefix.ps1"
|
|
}
|
|
|
|
[string]$AzCliUrl
|
|
if ([string]::IsNullOrEmpty($SasToken)) {
|
|
Write-Host 'Downloading from the Internet'
|
|
$AzCliUrl = 'https://azcliprod.blob.core.windows.net/msi/azure-cli-2.66.0-x64.msi'
|
|
} else {
|
|
Write-Host 'Downloading from vcpkgimageminting using SAS token'
|
|
$SasToken = $SasToken.Replace('"', '')
|
|
$AzCliUrl = "https://vcpkgimageminting.blob.core.windows.net/assets/azure-cli-2.66.0-x64.msi?$SasToken"
|
|
}
|
|
|
|
DownloadAndInstall -Url $AzCliUrl -Name 'Azure CLI' -Args @('/quiet', '/norestart')
|