rsemcs/scripts/update_modpack.sh

10 lines
308 B
Bash
Raw Normal View History

2022-05-12 09:33:18 +00:00
#!/bin/bash
mkdir temp
cd temp
curl -LOJR https://dev.sys.reslate.xyz/dev-auto/job/ydeng-public/job/rsemcm/job/master/lastSuccessfulBuild/artifact/publish/RSEMCM_server.zip
unzip RSEMCM_server.zip
2022-05-12 09:33:18 +00:00
cd ../
rsync -av --update temp/mods/* ./mods/.
rsync -av --ignore-existing temp/config ./config/.
2022-05-12 09:33:18 +00:00
rm -r ./temp