From 53263f36bfee4cc2e4afb4325e57ad7bcd8f1b7f Mon Sep 17 00:00:00 2001 From: Felipe Augusto <14238257+felipementel@users.noreply.github.com> Date: Sat, 30 Apr 2022 05:55:40 -0300 Subject: [PATCH] Update install.ps1 --- install.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.ps1 b/install.ps1 index 1bc967d..25039ac 100644 --- a/install.ps1 +++ b/install.ps1 @@ -42,7 +42,8 @@ choco feature enable -n=allowGlobalConfirmation; ,"microsoft-teams" ,"terraform" ,"kubernetes-cli" -,"kubernetes-helm") + ($pins = @("vscode")) | % { choco install $_ }; +,"kubernetes-helm" +,"lens") + ($pins = @("vscode")) | % { choco install $_ }; <# avoiding future upgrades of these following programs. #> $pins | % { choco pin add -n="$_" };