diff --git a/install.ps1 b/install.ps1 index db30814..a5fde67 100644 --- a/install.ps1 +++ b/install.ps1 @@ -265,6 +265,7 @@ function Get-SystemPrerequisites { Command = "pwsh" MinVersion = "7.0" Name = "PowerShell 7" + Sufficient = $false } Git = @{ Installed = $false @@ -272,6 +273,7 @@ function Get-SystemPrerequisites { Command = "git" MinVersion = "2.23" Name = "Git" + Sufficient = $false } VSCode = @{ Installed = $false @@ -279,6 +281,7 @@ function Get-SystemPrerequisites { Command = "code" MinVersion = $null Name = "Visual Studio Code" + Sufficient = $false } WindowsTerminal = @{ Installed = $false @@ -286,6 +289,7 @@ function Get-SystemPrerequisites { Command = "wt" MinVersion = $null Name = "Windows Terminal" + Sufficient = $false } }