mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
9 lines
254 B
PowerShell
9 lines
254 B
PowerShell
param([string]$OutputPath)
|
|
$name="geoip.dat"
|
|
$address="https://github.com/v2fly/geoip/releases/download/202107080024/geoip.dat"
|
|
|
|
..\scripts\download.ps1 $name $address
|
|
if (-Not $?) { exit $lastExitCode }
|
|
|
|
Move-Item -Force $name $OutputPath
|
|
exit 0 |