fix: init of prereqs

This commit is contained in:
Bjarke Sporring
2026-01-15 10:14:15 +01:00
parent daa787842a
commit 9e22f84a53

View File

@@ -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
}
}