Skip to content

Commit

Permalink
Fix Copy Packages step (#31790)
Browse files Browse the repository at this point in the history
  • Loading branch information
scbedd authored Nov 15, 2024
1 parent 59ce884 commit b3e5d58
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions eng/pipelines/templates/steps/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ steps:
ServiceDirectory: ${{parameters.ServiceDirectory}}

- pwsh: |
$artifacts = Get-ChildItem -Recurse -Force "$(Build.ArtifactStagingDirectory)/PackageInfo/*.json" `
| ForEach-Object { $_.Name.Replace(".json", "") }
$artifacts = "$(ArtifactPackageNames)".Split(",")
foreach ($artifact in $artifacts)
{
Expand Down

0 comments on commit b3e5d58

Please sign in to comment.