diff --git a/install.ps1 b/install.ps1 index fd8bddf..f7dc4f5 100644 --- a/install.ps1 +++ b/install.ps1 @@ -41,7 +41,8 @@ choco feature enable -n=allowGlobalConfirmation; ,"postman" ,"vim" ,"microsoft-teams" -,"terraform") + ($pins = @("vscode")) | % { choco install $_ }; +,"terraform" +,"kubernetes-cli") + ($pins = @("vscode")) | % { choco install $_ }; <# avoiding future upgrades of these following programs. #> $pins | % { choco pin add -n="$_" };