소스 검색

Update rules dat file URL

Update rules dat file URL to GitHub default latest downloadable assets URL
Loyalsoldier 6 년 전
부모
커밋
4a6ae20474
1개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 4
      release/release-ci.sh

+ 2 - 4
release/release-ci.sh

@@ -60,13 +60,11 @@ popd
 
 pushd $GOPATH/src/v2ray.com/core/
 # Update geoip.dat
-GEOIP_TAG=$(curl --silent "https://api.github.com/repos/v2ray/geoip/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
-curl -L -o release/config/geoip.dat "https://github.com/v2ray/geoip/releases/download/${GEOIP_TAG}/geoip.dat"
+curl -L -o release/config/geoip.dat "https://github.com/v2ray/geoip/releases/latest/download/geoip.dat"
 sleep 1
 
 # Update geosite.dat
-GEOSITE_TAG=$(curl --silent "https://api.github.com/repos/v2ray/domain-list-community/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
-curl -L -o release/config/geosite.dat "https://github.com/v2ray/domain-list-community/releases/download/${GEOSITE_TAG}/dlc.dat"
+curl -L -o release/config/geosite.dat "https://github.com/v2ray/domain-list-community/releases/latest/download/dlc.dat"
 sleep 1
 popd