2022-05-12 04:33:18 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
mkdir temp
|
|
|
|
cd temp
|
2022-05-13 02:56:15 -05:00
|
|
|
curl -LOJR https://dev.sys.reslate.xyz/dev-auto/job/ydeng-public/job/rsemcm/job/master/lastSuccessfulBuild/artifact/publish/RSEMCS_server.zip
|
2022-05-12 04:33:18 -05:00
|
|
|
unzip RSEMCS_server.zip
|
|
|
|
cd ../
|
|
|
|
rsync -av --update ./temp/mods/* ./mods/.
|
2022-05-12 15:54:49 -05:00
|
|
|
rsync -av --ignore-existing ./temp/config ./config/.
|
2022-05-12 04:33:18 -05:00
|
|
|
rm -r ./temp
|