Skip to content

Commit

Permalink
filter deprecated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mriedmann committed Jul 10, 2023
1 parent 4668f9b commit 8df223e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion _common.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ function Get-ProductReleases {

@(
Get-GithubReleases -Repo $Repo |
Where-Object { (-not $_.prerelease) -or ($_.prerelease -eq $WithPrerelease) } |
Where-Object { (-not $_.prerelease) -or ($_.prerelease -eq $WithPrerelease) } |
Where-Object { $_.name -inotmatch "deprecated" } |
ForEach-Object {
[pscustomobject]@{
Release = $_
Expand Down

0 comments on commit 8df223e

Please sign in to comment.