1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-05 05:25:23 +00:00
v2fly/release/updatedat.sh

14 lines
331 B
Bash
Raw Normal View History

2019-04-16 12:24:15 +00:00
#!/bin/bash
2020-06-19 13:57:03 +00:00
pushd "$GOPATH/src/v2ray.com/core/" || return
2019-04-16 12:24:15 +00:00
# Update geoip.dat
2020-06-19 18:01:45 +00:00
curl -L -o release/config/geoip.dat "https://github.com/v2ray/geoip/raw/release/geoip.dat"
2019-04-16 12:24:15 +00:00
sleep 1
# Update geosite.dat
2020-06-19 18:01:45 +00:00
curl -L -o release/config/geosite.dat "https://github.com/v2ray/domain-list-community/raw/release/dlc.dat"
2019-04-16 12:24:15 +00:00
sleep 1
2020-06-19 13:57:03 +00:00
popd || return