diff options
Diffstat (limited to 'docs/content/en/hosting-and-deployment/deployment-with-rsync.md')
-rw-r--r-- | docs/content/en/hosting-and-deployment/deployment-with-rsync.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/en/hosting-and-deployment/deployment-with-rsync.md b/docs/content/en/hosting-and-deployment/deployment-with-rsync.md index f341ad618..06f250b37 100644 --- a/docs/content/en/hosting-and-deployment/deployment-with-rsync.md +++ b/docs/content/en/hosting-and-deployment/deployment-with-rsync.md @@ -89,7 +89,7 @@ Add the following content. Replace the `USER`, `HOST`, and `DIR` values with you #!/bin/sh USER=my-user HOST=my-server.com -DIR=my/directory/to/topologix.fr/ # the directory where your web site files should go +DIR=my/directory/to/topologix.fr/ # the directory where your website files should go hugo && rsync -avz --delete public/ ${USER}@${HOST}:~/${DIR} # this will delete everything on the server that's not in the local public folder |