Update comment to reflect the correct directory

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Haritha
2026-01-13 15:23:46 -06:00
committed by GitHub
parent 0badf909f6
commit 703395f1ea

View File

@@ -15,7 +15,7 @@ Describe "Node.js" {
# Go up two directories to get runner root
$runnerRoot = Split-Path (Split-Path $runnerProc.Path -Parent) -Parent
#Write-Host "`$runnerRoot: $runnerRoot"
# Recursively find all _diag/pages folders under $homeDir(not homedir-replace with runnerroot)
# Recursively find all _diag/pages folders under the runner root directory
$possiblePaths = Get-ChildItem -Path $runnerRoot -Directory -Recurse -ErrorAction SilentlyContinue |
Where-Object { $_.FullName -like "*_diag\pages" -or $_.FullName -like "*_diag/pages" }
Write-Host "`LogsPaths:"