meta-rpi/tools/scripts/sync_ipk_up.sh
Thomas Klaehn 482c08e442 meta-rpi: initial commit
Signed-off-by: Thomas Klaehn <tkl@blackfinn.de>
2018-04-19 16:03:55 +02:00

10 lines
171 B
Bash
Executable File

#!/bin/bash
if [ -n "$1" ]; then
rsync -avz -e "ssh -o StrictHostKeyChecking=no" --progress tmp/deploy/ipk/ tkl@e320:/srv/ipk/$1
else
echo "Which branch?"
exit -1
fi