Skip to content

Commit

Permalink
Standardize cmdlet capitalization in Windows CI scripts.
Browse files Browse the repository at this point in the history
This patch standardizes the capitalization of PowerShell commandlets in
the Windows CI setup script in accordance with general PowerShell best
practices.

Signed-off-by: Nashwan Azhari <nazhari@cloudbasesolutions.com>
  • Loading branch information
aznashwan committed Nov 16, 2021
1 parent d055487 commit 3d6bfa3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions script/setup/prepare_env_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

$PACKAGES= @{ mingw = "10.2.0"; git = ""; golang = "1.17.3"; make = ""; nssm = "" }

write-host "Downloading chocolatey package"
Write-Host "Downloading chocolatey package"
curl.exe -L "https://packages.chocolatey.org/chocolatey.0.10.15.nupkg" -o 'c:\choco.zip'
Expand-Archive "c:\choco.zip" -DestinationPath "c:\choco"

write-host "Installing choco"
Write-Host "Installing choco"
& "c:\choco\tools\chocolateyInstall.ps1"

write-host "Set choco.exe path."
Write-Host "Set choco.exe path."
$env:PATH+=";C:\ProgramData\chocolatey\bin"

write-host "Install necessary packages"
Write-Host "Install necessary packages"

foreach ($package in $PACKAGES.Keys) {
$command = "choco.exe install $package --yes"
Expand All @@ -23,12 +23,12 @@ foreach ($package in $PACKAGES.Keys) {
Invoke-Expression $command
}

write-host "Set up environment."
Write-Host "Set up environment."

$path = ";c:\Program Files\Git\bin;c:\Program Files\Go\bin;c:\Users\azureuser\go\bin;c:\containerd\bin"
$env:PATH+=$path

write-host $env:PATH
Write-Host $env:PATH

[Environment]::SetEnvironmentVariable("PATH", $env:PATH, 'User')

Expand Down

0 comments on commit 3d6bfa3

Please sign in to comment.