meta-rpi/tools/scripts/sync_ipk_up.sh
Thomas Klaehn c6a9a1632d meta-rpi: initial commit
Signed-off-by: Thomas Klaehn <tkl@blackfinn.de>
2018-04-19 09:58:38 +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