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 |
#!/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. |
# ^ exclude mtkit/minetest/ and assemble/ since they are remotely-built copies of the program. |
||||
# --info=progress2 |
# --info=progress2 |
||||
code=$? |
code=$? |
||||
if [ $code -eq 0 ]; then |
if [ $code -eq 0 ]; then |
||||
echo "Updating ~/linux-minetest-kit-rsync...OK" |
echo "Updating ~/minebest-rsync...OK" |
||||
else |
else |
||||
echo "Updating ~/linux-minetest-kit-rsync...FAILED" |
echo "Updating ~/minebest-rsync...FAILED" |
||||
fi |
fi |
||||
cd ~/linux-minetest-kit-rsync |
cd ~/minebest-rsync |
||||
cat <<END |
cat <<END |
||||
|
|
||||
Next do: |
Next do: |
||||
|
|
||||
cd ~/linux-minetest-kit-rsync/mtkit |
cd ~/minebest-rsync/mtkit |
||||
bash -e mtcompile-libraries.sh build |
bash -e mtcompile-libraries.sh build |
||||
perl mtcompile-program.pl --build --finetest --client |
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)" |
nopackage install finetest --version rsync --caption "Finetest (rsync)" |
||||
END |
END |
||||
|
Loading…
Reference in new issue