ClashX/install_dependency.sh

17 lines
460 B
Bash
Raw Normal View History

2019-10-02 21:43:18 +08:00
#!/bin/bash
set -eu
2020-03-13 18:04:24 +08:00
echo "Pod install"
pod install
2019-10-02 21:43:18 +08:00
echo "delete old files"
rm -f ./ClashX/Resources/Country.mmdb
rm -rf ./ClashX/Resources/dashboard
rm -f GeoLite2-Country.*
echo "install mmdb"
2019-12-31 21:18:09 +08:00
wget https://static.clash.to/GeoIP2/GeoIP2-Country.mmdb
mv GeoIP2-Country.mmdb ./ClashX/Resources/Country.mmdb
2019-10-02 21:43:18 +08:00
echo "install dashboard"
cd ClashX/Resources
git clone -b gh-pages https://github.com/Dreamacro/clash-dashboard.git dashboard
2020-03-13 18:04:24 +08:00
cd ..
python3 build_clash.py