Missing recurse

This commit is contained in:
lawrencegripper
2024-12-04 11:06:53 +00:00
parent 1aad2d246d
commit 66ee991884

View File

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