1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-11-12 07:19:01 -05:00

Chore: update build script to include geoip-only-cn-private.dat (#1266)

(cherry picked from commit 8a22e942c4)
This commit is contained in:
Loyalsoldier 2021-09-11 09:03:19 +08:00 committed by Shelikhoo
parent 0f7345ba76
commit 389a0585f3
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316

View File

@ -40,10 +40,13 @@ build_v2() {
} }
build_dat() { build_dat() {
echo ">>> Download latest geoip..." echo ">>> Download latest geoip.dat"
curl -s -L -o "$TMP"/geoip.dat "https://github.com/v2fly/geoip/raw/release/geoip.dat" curl -s -L -o "$TMP"/geoip.dat "https://github.com/v2fly/geoip/raw/release/geoip.dat"
echo ">>> Download latest geosite..." echo ">>> Download latest geoip-only-cn-private.dat"
curl -s -L -o "$TMP"/geoip-only-cn-private.dat "https://github.com/v2fly/geoip/raw/release/geoip-only-cn-private.dat"
echo ">>> Download latest geosite.dat"
curl -s -L -o "$TMP"/geosite.dat "https://github.com/v2fly/domain-list-community/raw/release/dlc.dat" curl -s -L -o "$TMP"/geosite.dat "https://github.com/v2fly/domain-list-community/raw/release/dlc.dat"
} }