From 9e22f84a53974f6985c6ba70a30bbcf8cd79f0c5 Mon Sep 17 00:00:00 2001 From: Bjarke Sporring Date: Thu, 15 Jan 2026 10:14:15 +0100 Subject: [PATCH] fix: init of prereqs --- install.ps1 | 4 ++++ 1 file changed, 4 insertions(+) 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 } }