We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b3636d commit 70b3c3aCopy full SHA for 70b3c3a
.azure-pipelines/PipelineSteps/BatchGeneration/report.ps1
@@ -3,6 +3,15 @@ param (
3
[string]$PipelineWorkspace
4
)
5
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
15
# Check number of generation targets
16
$generationTargetsFile = Join-Path $PipelineWorkspace "_current" "generationTargets.json"
17
$generationTargets = Get-Content -Raw -Path $generationTargetsFile | ConvertFrom-Json
0 commit comments