Tiny PR script I need
This commit is contained in:
parent
e53e842d46
commit
5c0c3d6381
1 changed files with 8 additions and 0 deletions
8
Tools/patrons_pr.ps1
Normal file
8
Tools/patrons_pr.ps1
Normal file
|
|
@ -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 ", "
|
||||
Loading…
Add table
Reference in a new issue