mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-06-09 10:06:43 +02:00
Tiny PR script I need
This commit is contained in:
@@ -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 ", "
|
||||
Reference in New Issue
Block a user