mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-22 14:33:51 +00:00
11 lines
416 B
Bash
Executable File
11 lines
416 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. ./scripts/env.sh
|
|
DESTPATH=$RSYNC_PATH/
|
|
echo "Upload HEAD to production? [Press Enter]"
|
|
read
|
|
git ls-files -z | rsync --stats --exclude '.*' --exclude 'scripts/*' --exclude=node_modules -ril -e "ssh -p 2222" --files-from - -0 . $DESTPATH
|
|
git archive --format tar.gz --prefix 8bitworkshop- HEAD tools/ > release/8bitworkshop-tools.tgz
|
|
#rsync --stats -rilvz -e "ssh -p 2222" ./mame $DESTPATH/
|
|
echo "Done."
|