mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
File name was submitted with `CLI` in `AzureDevSpacesCLI` capitalized,
but the script is invoked as a provisioner using the lower-case `Cli`
form as seen in `AzureDevSpacesCli`.
Renaming the file to use the lower-case form to match other provisioning
scripts used in the Windows builds.
Issue introduced in commit 932d0f36cd
10 lines
561 B
PowerShell
10 lines
561 B
PowerShell
################################################################################
|
|
## File: Install-AzureDevSpacesCLI.ps1
|
|
## Desc: Install Azure Dev Spaces CLI
|
|
################################################################################
|
|
|
|
# Install Azure Dev Spaces CLI
|
|
Install-Binary -Url "https://aka.ms/get-azds-windows" -Name "Azure Dev Spaces CLI.exe" -ArgumentList ("/quiet")
|
|
Add-MachinePathItem -PathItem "C:\Program Files\Microsoft SDKs\Azure\Azure Dev Spaces CLI"
|
|
|
|
Invoke-PesterTests -TestFile "CLI.Tools" -TestName "Azure Dev Spaces CLI" |