Files
netch/scripts/deps/geosite.ps1
2021-10-15 02:08:59 +08:00

16 lines
287 B
PowerShell

param (
[string]
$OutputPath
)
try {
Invoke-WebRequest `
-Uri 'https://github.com/v2fly/domain-list-community/releases/download/20211013090609/dlc.dat' `
-OutFile 'geosite.dat'
}
catch {
exit 1
}
mv -Force 'geosite.dat' $OutputPath
exit 0