Files
netch/scripts/deps/geosite.ps1
Connection Refused 471926adc8 Update dependencies
2021-09-13 00:52:56 +08:00

16 lines
287 B
PowerShell

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