-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathrsync-and-build.sh
More file actions
18 lines (15 loc) · 663 Bytes
/
rsync-and-build.sh
File metadata and controls
18 lines (15 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
# To be used via a script such as
: <<'COMMENT'
export RSYNC_PASSWORD=password
export BUILDBOT=rsync://username@server/path/to/this/directory
mkdir -p ~/calibre-src
cd ~/calibre-src || exit 1
script=rsync-and-build.sh
if [[ -e "$script" ]]; then
. "./$script"
else
rsync -a --include "$script" --exclude '*' "$BUILDBOT" . && source "$script"
fi
COMMENT
rsync -a --delete --force --exclude bypy/b --exclude src/calibre/plugins --exclude manual --exclude ".*cache" --exclude .git --exclude build --exclude dist --exclude "*.pyj-cached" --exclude "*.pyc" --exclude "*.pyo" --exclude "*.swp" --exclude "*.swo" --exclude format_docs "$BUILDBOT" .