Skip to content

Commit

Permalink
Merge pull request microsoft#670 from microsoft/app_svc_cli_fix
Browse files Browse the repository at this point in the history
App svc cli fix
  • Loading branch information
likamrat authored Jul 23, 2021
2 parents 8461845 + 115a2b8 commit ca64dea
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,9 @@ Invoke-WebRequest ($templateBaseUrl + "artifacts/deployAppService.ps1") -OutFile
Invoke-WebRequest ($templateBaseUrl + "artifacts/deployFunction.ps1") -OutFile "C:\Temp\deployFunction.ps1"

# Installing tools

Invoke-WebRequest -Uri https://github.com/Azure/azure-cli/releases/download/azure-cli-2.25.0/azure-cli-2.25.0.msi -OutFile .\AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet'; rm .\AzureCLI.msi
# Pindown az cli version to avoid current Azure Arc-enabled app services version compatibility issues

workflow ClientTools_01
{
$chocolateyAppList = 'az.powershell,kubernetes-cli,vcredist140,microsoft-edge,azcopy10,vscode,putty.install,kubernetes-helm,azure-functions-core-tools-3,azurefunctions-vscode,dotnetcore-sdk,vscode-csharp,microsoftazurestorageexplorer'
$chocolateyAppList = 'azure-cli,az.powershell,kubernetes-cli,vcredist140,microsoft-edge,azcopy10,vscode,putty.install,kubernetes-helm,azure-functions-core-tools-3,azurefunctions-vscode,dotnetcore-sdk,vscode-csharp,microsoftazurestorageexplorer'
#Run commands in parallel.
Parallel
{
Expand All @@ -97,7 +93,7 @@ workflow ClientTools_01
Write-Host "Installing $app"
& choco install $app /y -Force| Write-Output
}
}
}
}
Invoke-WebRequest "https://raw.githubusercontent.com/microsoft/azure_arc/main/img/jumpstart_wallpaper.png" -OutFile "C:\Temp\wallpaper.png"
}
Expand Down

0 comments on commit ca64dea

Please sign in to comment.