mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-05 11:06:28 +00:00
7 lines
292 B
Bash
Executable File
7 lines
292 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. ./scripts/env.sh
|
|
DESTPATH=$RSYNC_PATH/dev/
|
|
git ls-files -z | rsync --stats --exclude '.*' --exclude 'scripts/*' --exclude=node_modules -ril --chmod=a+rx -e "ssh -p 2222" --files-from - -0 . $DESTPATH
|
|
rsync --stats -rpilvz --chmod=a+rx -e "ssh -p 2222" ./gen ./mame $DESTPATH/
|