From 7ca67945a15f60e734edc28665adbe64a4e076a6 Mon Sep 17 00:00:00 2001 From: Wellington Augusto Ribeiro <59797383+wellingtonaribeiro@users.noreply.github.com> Date: Mon, 29 May 2023 14:18:38 +0100 Subject: [PATCH] Update install.ps1 --- install.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install.ps1 b/install.ps1 index e2f8539..25c9f47 100644 --- a/install.ps1 +++ b/install.ps1 @@ -19,7 +19,8 @@ choco feature enable -n=allowGlobalConfirmation; <# poll #> @( -"git" +"python" +/*"git" ,"dotnetcore-sdk" ,"dotnet-6.0-sdk" ,"dotnetcore-sdk" @@ -52,7 +53,7 @@ choco feature enable -n=allowGlobalConfirmation; ,"snagit" ,"zoomit" ,"lightshot" -,"lens") + ($pins = @("vscode")) | % { choco install $_ }; +,"lens"*/) + ($pins = @("vscode")) | % { choco install $_ }; <# avoiding future upgrades of these following programs. #> $pins | % { choco pin add -n="$_" };