File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
eng/pipelines/templates/steps Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -89,9 +89,12 @@ steps:
8989 displayName : Update package properties with namespaces
9090
9191 - pwsh : |
92- Get-ChildItem -Path "$(Build.ArtifactStagingDirectory)" -Filter GovCompDisc* | % { Remove-Item $_ }
93- Get-ChildItem -Path "$(Build.ArtifactStagingDirectory)" -Filter ScanTelemetry* | % { Remove-Item $_ }
92+ Get-ChildItem -R -Path "$(Build.ArtifactStagingDirectory)" | % { Write-Host $_.FullName }
93+ Get-ChildItem -Path "$(Build.ArtifactStagingDirectory)" -Filter GovCompDisc* | % { Write-Host "Removing $($_.FullName)"; Remove-Item $_ }
94+ Get-ChildItem -Path "$(Build.ArtifactStagingDirectory)" -Filter ScanTelemetry* | % { Write-Host "Removing $($_.FullName)"; Remove-Item $_ }
9495 Remove-Item -Recurse -Force -Path "$(Build.ArtifactStagingDirectory)/bcde-output"
96+ Remove-Item -Recurse -Force -Path "$(Build.ArtifactStagingDirectory)/_manifest"
97+ Get-ChildItem -R -Path "$(Build.ArtifactStagingDirectory)" | % { Write-Host $_.FullName }
9598 displayName: Clean up Artifact Directory
9699
97100 - template : /eng/common/pipelines/templates/steps/publish-1es-artifact.yml
You can’t perform that action at this time.
0 commit comments