Compare commits
2 Commits
66975ceeeb
...
93e1830573
Author | SHA1 | Date |
---|---|---|
poikilos | 93e1830573 | 1 year ago |
poikilos | 9a9221beb5 | 1 year ago |
3 changed files with 9 additions and 9 deletions
@ -1,21 +1,21 @@ |
|||
#!/bin/bash |
|||
rsync -rtv mtio:/opt/minebest/ ~/linux-minetest-kit-rsync --exclude "mtkit/minetest/" --exclude "assemble/" --exclude "mtkit0/" |
|||
rsync -rtv mtio:/opt/minebest/ ~/minebest-rsync --exclude "mtkit/minetest/" --exclude "assemble/" --exclude "mtkit0/" |
|||
# ^ exclude mtkit/minetest/ and assemble/ since they are remotely-built copies of the program. |
|||
# --info=progress2 |
|||
code=$? |
|||
if [ $code -eq 0 ]; then |
|||
echo "Updating ~/linux-minetest-kit-rsync...OK" |
|||
echo "Updating ~/minebest-rsync...OK" |
|||
else |
|||
echo "Updating ~/linux-minetest-kit-rsync...FAILED" |
|||
echo "Updating ~/minebest-rsync...FAILED" |
|||
fi |
|||
cd ~/linux-minetest-kit-rsync |
|||
cd ~/minebest-rsync |
|||
cat <<END |
|||
|
|||
Next do: |
|||
|
|||
cd ~/linux-minetest-kit-rsync/mtkit |
|||
cd ~/minebest-rsync/mtkit |
|||
bash -e mtcompile-libraries.sh build |
|||
perl mtcompile-program.pl --build --finetest --client |
|||
cd ~/linux-minetest-kit-rsync/mtkit/minetest/bin |
|||
cd ~/minebest-rsync/mtkit/minetest/bin |
|||
nopackage install finetest --version rsync --caption "Finetest (rsync)" |
|||
END |
|||
|
Loading…
Reference in new issue