Skip to content

Commit

Permalink
Replace spaces with dashes for package names
Browse files Browse the repository at this point in the history
  • Loading branch information
AdmiringWorm committed Jun 25, 2020
1 parent 4f028c5 commit baa8665
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/private/Update-StatusComment.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@

if ($statusData -and $statusData.Count -gt 0) {
$statusData | ForEach-Object {
if ($_.name -match ' ') {
$_.name = ($_.name -replace ' ', '-').ToLowerInvariant()
}
$lowestStatusVersion = $_.versions | Sort-Object {
if ($_.status -eq 'waiting') {
0
Expand Down

0 comments on commit baa8665

Please sign in to comment.