Files
netch/scripts/deps/geosite.ps1
2021-07-16 06:00:50 +08:00

9 lines
272 B
PowerShell

param([string]$OutputPath)
$name="geosite.dat"
$address="https://github.com/v2fly/domain-list-community/releases/download/20210709152606/dlc.dat"
..\scripts\download.ps1 $name $address
if (-Not $?) { exit $lastExitCode }
Move-Item -Force $name $OutputPath
exit 0