Removes the now unnecessary 'rsync -e' option
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2022-11-10 12:33:09 -05:00
parent b36dea937b
commit 067b09a996
2 changed files with 1 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ It uses Zola inside of docker to build and serve locally. In 'production' it's j
You must have [Docker](https://docker.com) installed to build the site. You must have [Docker](https://docker.com) installed to build the site.
Once you clone this repo you can Once you clone this repo you can
`./build` to build the static HTML. `./build` to build the static HTML.

View File

@@ -7,5 +7,4 @@ chown -R $(whoami) .
sshpass -p "$DEPLOY_PASSWORD" \ sshpass -p "$DEPLOY_PASSWORD" \
rsync -avzrO \ rsync -avzrO \
-e 'ssh -o "StrictHostKeyChecking no"' \
./public/ $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_PATH ./public/ $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_PATH