Browse Source

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

(cherry picked from commit 8a22e942c4c883e7f2d9f1da1565ecb6a9329eb0)
Loyalsoldier 4 years ago
parent
commit
389a0585f3
1 changed files with 5 additions and 2 deletions
  1. 5 2
      release/user-package.sh

+ 5 - 2
release/user-package.sh

@@ -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"
 }
 }