Skip to content

Commit

Permalink
Update eng/common/scripts/create-tags-and-git-release.ps1
Browse files Browse the repository at this point in the history
Co-authored-by: Wes Haggard <weshaggard@users.noreply.github.com>
  • Loading branch information
2 people authored and azure-sdk committed Jan 10, 2024
1 parent b4c9c77 commit 9a1a9ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eng/common/scripts/create-tags-and-git-release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ $pkgList = VerifyPackages -artifactLocation $artifactLocation -workingDirectory

if ($packageFilter) {
Write-Host "Filtering discovered packages to '$packageFilter'"
[array]$pkgList = $pkgList | Where-Object { $_.PackageId -like $packageFilter }
$pkgList = @($pkgList | Where-Object { $_.PackageId -like $packageFilter })
}

if ($pkgList) {
Expand Down

0 comments on commit 9a1a9ae

Please sign in to comment.