summarylogtreecommitdiffstats
path: root/vxray-rules-dat-updater
blob: 6a245de27f916d7eed3ec14088ae55307d08b3b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash

set -e

FastGit="https://hub.fastgit.org/Loyalsoldier/v2ray-rules-dat/releases/latest/"
GitHub="https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/"
JsDelivr="https://cdn.jsdelivr.net/gh/Loyalsoldier/v2ray-rules-dat@release/"

download_files() {
  echo "Fetching geoip.dat"
  curl -LO "${1}/geoip.dat"

  echo "Fetching geosite.dat"
  curl -LO "${1}/geosite.dat"
}

case "${1}" in
"fastgit" | "fg")
  download_files $FastGit
  ;;
"jsdelivr" | "js")
  download_files $JsDelivr
  ;;
*)
  download_files $GitHub
  ;;
esac