From 87948e2cbc1a1d30d290ad72cefbf25cb8ce5b21 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Thu, 8 Oct 2015 11:44:21 -0400 Subject: [PATCH] Do not use rsync --- scripts/website_push.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/website_push.sh b/scripts/website_push.sh index b588899a54..7eff6a59a0 100755 --- a/scripts/website_push.sh +++ b/scripts/website_push.sh @@ -19,7 +19,7 @@ while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )" # Copy into tmpdir -rsync -avP $DIR/website/ $DEPLOY/ +cp -R $DIR/website/* $DEPLOY/ # Change into that directory pushd $DEPLOY &>/dev/null