2019-12-13 09:48:00 -05:00
|
|
|
################################################################################
|
|
|
|
|
## File: Install-AzureCli.ps1
|
|
|
|
|
## Desc: Install Azure CLI
|
|
|
|
|
################################################################################
|
|
|
|
|
|
2020-06-03 10:50:24 +03:00
|
|
|
Choco-Install -PackageName azure-cli
|
2019-12-13 09:48:00 -05:00
|
|
|
|
|
|
|
|
$AzureCliExtensionPath = Join-Path $Env:CommonProgramFiles 'AzureCliExtensionDirectory'
|
|
|
|
|
New-Item -ItemType "directory" -Path $AzureCliExtensionPath
|
|
|
|
|
|
|
|
|
|
[Environment]::SetEnvironmentVariable("AZURE_EXTENSION_DIR", $AzureCliExtensionPath, [System.EnvironmentVariableTarget]::Machine)
|
2020-07-07 13:20:09 +03:00
|
|
|
|
2020-07-21 09:50:01 +03:00
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "AzureCli"
|