Skip to content

Commit 8e9facb

Browse files
committed
Add shell script for deploying project to Raspi
1 parent 41527f9 commit 8e9facb

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

deploy.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/bash
2+
3+
SRCDIR="$HOME/work/python-rtmidi/"
4+
DSTDIR="work/rtmidi/src/python-rtmidi"
5+
DSTHOST="192.168.100.1"
6+
7+
rsync -av --update --checksum \
8+
--exclude .svn \
9+
--exclude sysex \
10+
--exclude dist \
11+
--exclude build \
12+
--exclude __pycache__ \
13+
"$SRCDIR" "$DSTHOST:$DSTDIR"

0 commit comments

Comments
 (0)