From 66ee99188480194054a36e36f8d89c178005a88d Mon Sep 17 00:00:00 2001 From: lawrencegripper Date: Wed, 4 Dec 2024 11:06:53 +0000 Subject: [PATCH] Missing recurse --- images/windows/scripts/helpers/InstallHelpers.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/windows/scripts/helpers/InstallHelpers.ps1 b/images/windows/scripts/helpers/InstallHelpers.ps1 index da5c37fce..2d0c45bf4 100644 --- a/images/windows/scripts/helpers/InstallHelpers.ps1 +++ b/images/windows/scripts/helpers/InstallHelpers.ps1 @@ -130,7 +130,7 @@ function Install-Binary { if ($InstallerLogPath) { Write-Host "Searching for logs maching $InstallerLogPath pattern" - Get-ChildItem -Path $InstallerLogPath | ForEach-Object { + Get-ChildItem -Recurse -Path $InstallerLogPath | ForEach-Object { Write-Output "Found Installer Log: $InstallerLogPath" Get-Content -Path $InstallerLogPath }