Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Tiny PR script I need
Browse files Browse the repository at this point in the history
  • Loading branch information
PJB3005 committed Nov 24, 2021
1 parent e53e842 commit 5c0c3d6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Tools/patrons_pr.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env pwsh

param([string]$csvPath)

# Dumps Patreon's CSV download into the list for the progress report

# Have to trim patron names because apparently Patreon doesn't which is quite ridiculous.
Get-content $csvPath | ConvertFrom-Csv -Delimiter "," | select @{l="Name";e={$_.Name.Trim()}} | Sort-Object Name | Join-String Name -Separator ", "

0 comments on commit 5c0c3d6

Please sign in to comment.