18 lines
594 B
Bash
18 lines
594 B
Bash
#!/bin/sh
|
|
|
|
# Get the default robot's hostname
|
|
robotHost=`jibo robot-list|grep '*'|awk '{print \$3 }'`;
|
|
|
|
rsync -av -L -p --delete --force \
|
|
--exclude='.git/' \
|
|
--exclude='bin/' \
|
|
--exclude='node_modules/*gulp/' \
|
|
--exclude='*/node_modules/*gulp' \
|
|
--exclude='*/node_modules/*gulp' \
|
|
--exclude='node_modules/jibo/node_modules/gulp*' \
|
|
--exclude='node_modules/jibo/node_modules/skills-service-manager*' \
|
|
--exclude='*/node_modules/electron-prebuilt' \
|
|
--exclude='*/node_modules/floss' \
|
|
. \
|
|
root@$robotHost:/opt/jibo/Jibo/Skills/jibo-anim-db-animations
|