From ab5a758c5088c1790a7c03378a1ce82fba99ef5b Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 27 Aug 2024 18:58:33 +0200 Subject: [PATCH] Add tools for managing `aliae` --- scripts/Common/Scripts/Operations.ps1 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/Common/Scripts/Operations.ps1 b/scripts/Common/Scripts/Operations.ps1 index 8b7ed9f9..31306bec 100644 --- a/scripts/Common/Scripts/Operations.ps1 +++ b/scripts/Common/Scripts/Operations.ps1 @@ -163,6 +163,12 @@ $null = New-Module { continue; } + if (-not (Test-Command "yq")) { + Install-ChocoPackage "yq"; + refreshenv; + continue; + } + if (-not (Test-Wsl)) { Install-Wsl; Restart-Intermediate;