poikilos
6 years ago
committed by
Jacob Gustafson
2 changed files with 25 additions and 2 deletions
@ -0,0 +1,14 @@ |
|||
#!/bin/bash |
|||
src=WIP/ENLIVEN |
|||
if [ ! -d "$src" ]; then |
|||
echo "ERROR: missing $src" |
|||
exit 1 |
|||
fi |
|||
|
|||
dst="$HOME/EnlivenMinetest/webapp/linux-minetest-kit/minetest/games" |
|||
echo "transferring to $dst..." |
|||
rsync -rt WIP/ENLIVEN $dst |
|||
dst="192.168.1.5:/home/owner/git/EnlivenMinetest/webapp/linux-minetest-kit/minetest/games" |
|||
echo "transferring to $dst..." |
|||
rsync -rt WIP/ENLIVEN $dst |
|||
echo "Done." |
Loading…
Reference in new issue