Files
netch/Other/_Archive/chnip/build.ps1
2022-03-22 14:20:23 +08:00

12 lines
267 B
PowerShell

Set-Location (Split-Path $MyInvocation.MyCommand.Path -Parent)
try {
Invoke-WebRequest `
-Uri 'https://raw.githubusercontent.com/17mon/china_ip_list/master/china_ip_list.txt' `
-OutFile '..\..\release\bin\chnip.txt'
}
catch {
exit 1
}
exit 0