mirror of
https://github.com/Mahdi-zarei/nekoray.git
synced 2025-12-18 20:50:09 +08:00
15 lines
389 B
Bash
Executable File
15 lines
389 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source script/env_deploy.sh
|
|
DEST=$DEPLOYMENT/public_res
|
|
rm -rf $DEST
|
|
mkdir -p $DEST
|
|
|
|
#### Download geodata ####
|
|
curl -fLso $DEST/geoip.db "https://github.com/SagerNet/sing-geoip/releases/latest/download/geoip.db"
|
|
curl -fLso $DEST/geosite.db "https://github.com/SagerNet/sing-geosite/releases/latest/download/geosite.db"
|
|
|
|
#### copy res/public ####
|
|
cp res/public/* $DEST
|