From ffbe17a4824aa7da71bf35d1abeb50723f211d0c Mon Sep 17 00:00:00 2001 From: MeztliRA <78863518+MeztliRA@users.noreply.github.com> Date: Fri, 21 Oct 2022 14:44:38 +0700 Subject: [PATCH] Add note for rsync deploy command (#1415) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bjørn Erik Pedersen Co-authored-by: Christian Oliff --- content/en/hosting-and-deployment/deployment-with-rsync.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/hosting-and-deployment/deployment-with-rsync.md b/content/en/hosting-and-deployment/deployment-with-rsync.md index 55a4b184e..775886c4c 100644 --- a/content/en/hosting-and-deployment/deployment-with-rsync.md +++ b/content/en/hosting-and-deployment/deployment-with-rsync.md @@ -100,7 +100,7 @@ USER=my-user HOST=my-server.com DIR=my/directory/to/topologix.fr/ # the directory where your web site files should go -hugo && rsync -avz --delete public/ ${USER}@${HOST}:~/${DIR} +hugo && rsync -avz --delete public/ ${USER}@${HOST}:~/${DIR} # this will delete everything on the server that's not in the local public folder exit 0 ```