10 lines
307 B
Bash
Executable File
10 lines
307 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir temp
|
|
cd temp
|
|
curl -LOJR https://dev.sys.reslate.xyz/dev-auto/job/ydeng/job/rsemcs-modpack/job/master/lastSuccessfulBuild/artifact/publish/RSEMCS_server.zip
|
|
unzip RSEMCS_server.zip
|
|
cd ../
|
|
rsync -av --update ./temp/mods/* ./mods/.
|
|
rsync -av --update -r ./temp/config ./config/.
|
|
rm -r ./temp |