Skip to content

Commit 70b3c3a

Browse files
committed
Fix path 3
1 parent 1b3636d commit 70b3c3a

File tree

1 file changed

+9
-0
lines changed
  • .azure-pipelines/PipelineSteps/BatchGeneration

1 file changed

+9
-0
lines changed

.azure-pipelines/PipelineSteps/BatchGeneration/report.ps1

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ param (
33
[string]$PipelineWorkspace
44
)
55

6+
Get-ChildItem -Path $PipelineWorkspace -Recurse -Depth 2 | ForEach-Object {
7+
if ($_.PSIsContainer) {
8+
Write-Host "DIR : $($_.FullName)"
9+
} else {
10+
Write-Host "FILE: $($_.FullName)"
11+
}
12+
}
13+
14+
615
# Check number of generation targets
716
$generationTargetsFile = Join-Path $PipelineWorkspace "_current" "generationTargets.json"
817
$generationTargets = Get-Content -Raw -Path $generationTargetsFile | ConvertFrom-Json

0 commit comments

Comments
 (0)