You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
433 B
15 lines
433 B
#!/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
|
|
#OLD: dst="192.168.1.5:/home/owner/git/EnlivenMinetest/webapp/linux-minetest-kit/minetest/games"
|
|
dst="192.168.1.5:$HOME/minetest/games"
|
|
echo "transferring to $dst..."
|
|
rsync -rt WIP/ENLIVEN $dst
|
|
echo "Done."
|
|
|