Fix code style in Install-AzureCli.ps1 (#8480)

Following 0795b9ed8b
This commit is contained in:
Vasilii Polikarpov
2023-10-06 11:54:51 +02:00
committed by GitHub
parent 6d730133bf
commit cbe9acb6bc

View File

@@ -28,8 +28,7 @@ Write-Host "Warmup 'az'"
$env:PATH = [Environment]::GetEnvironmentVariable('PATH', 'Machine')
az --help | Out-Null
if ($LASTEXITCODE -ne 0)
{
if ($LASTEXITCODE -ne 0) {
throw "Command 'az --help' failed"
}