From fa79f53d165cc5f7457b3b8192ec499d93170287 Mon Sep 17 00:00:00 2001 From: Matthew McKinnon Date: Thu, 31 Jul 2025 18:55:24 +1000 Subject: [PATCH] chore: add software instasll --- SoftwareInstall.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/SoftwareInstall.ps1 b/SoftwareInstall.ps1 index 2ffc579..60a57f3 100644 --- a/SoftwareInstall.ps1 +++ b/SoftwareInstall.ps1 @@ -26,6 +26,9 @@ choco install microsoft-windows-terminal -y choco install powershell-core -y choco upgrade all --ignore-checksums -y +Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1 +refreshenv + Write-Output "Phase 5a [INFO] - Cloning and installing Segoe UI Linux fonts" # Define repo and clone path @@ -47,7 +50,7 @@ if (!(Test-Path $clonePath)) { } # Install fonts -$fontsPath = Join-Path $clonePath 'font' +$fontsPath = Join-Path $clonePath 'fonts' $fonts = Get-ChildItem -Path $fontsPath -Include *.ttf,*.otf -Recurse foreach ($font in $fonts) {