From 433e9824245d6038a933b3a63491ca576d1e21e0 Mon Sep 17 00:00:00 2001 From: Steven Hugg Date: Sat, 18 May 2019 15:26:51 -0400 Subject: [PATCH] removed port from scripts --- scripts/archive.sh | 2 +- scripts/sync-tools.sh | 2 +- scripts/sync-version-prod.sh | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/archive.sh b/scripts/archive.sh index 430875e1..c842af3c 100755 --- a/scripts/archive.sh +++ b/scripts/archive.sh @@ -11,7 +11,7 @@ git archive --prefix 8bitworkshop- -o release/8bitworkshop-tools.zip HEAD tools # copy to remote . ./scripts/env.sh DESTPATH=$RSYNC_PATH/release/ -rsync -rv --progress --stats -e "ssh -p 2222" release/*.zip $DESTPATH +rsync -rv --progress --stats -e "ssh" release/*.zip $DESTPATH # remove symlink rm $PREFIX diff --git a/scripts/sync-tools.sh b/scripts/sync-tools.sh index 253d6ff8..e8d58576 100755 --- a/scripts/sync-tools.sh +++ b/scripts/sync-tools.sh @@ -5,4 +5,4 @@ VERSION=`git tag | tail -1` DESTPATH=$RSYNC_PATH/ git archive --format tar.gz --prefix 8bitworkshop- HEAD tools/ > release/8bitworkshop-tools.tgz git archive --format zip --prefix 8bitworkshop- HEAD tools/ > release/8bitworkshop-tools.zip -rsync --stats -rpilvz --chmod=a+rx -e "ssh -p 2222" ./release $DESTPATH/ +rsync --stats -rpilvz --chmod=a+rx -e "ssh" ./release $DESTPATH/ diff --git a/scripts/sync-version-prod.sh b/scripts/sync-version-prod.sh index 8213cdb6..524155ac 100755 --- a/scripts/sync-version-prod.sh +++ b/scripts/sync-version-prod.sh @@ -20,6 +20,6 @@ rm -fr $TMPDIR mkdir -p $TMPDIR git archive $VERSION | tar x -C $TMPDIR echo "Copying to $DESTPATH..." -rsync --stats --exclude '.*' --exclude 'scripts/*' --exclude=node_modules --copy-dest=$DEVPATH -rilz --chmod=a+rx -e "ssh -p 2222" $TMPDIR/ $SUBMODS $DESTPATH -rsync --stats -rpilvz --chmod=a+rx -e "ssh -p 2222" --copy-dest=$DEVPATH ./gen config.js $DESTPATH/ +rsync --stats --exclude '.*' --exclude 'scripts/*' --exclude=node_modules --copy-dest=$DEVPATH -rilz --chmod=a+rx -e "ssh" $TMPDIR/ $SUBMODS $DESTPATH +rsync --stats -rpilvz --chmod=a+rx -e "ssh" --copy-dest=$DEVPATH ./gen config.js $DESTPATH/ echo "Done."