Do not use rsync

This commit is contained in:
Seth Vargo 2015-10-08 11:44:21 -04:00
parent 843c5353c3
commit 87948e2cbc

View File

@ -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