From 8485aa1d9394931476c8bc0fcf8b41ef5509154e Mon Sep 17 00:00:00 2001 From: aditya Date: Sun, 18 Jun 2023 10:28:44 +0530 Subject: [PATCH] fix typo --- hugo-deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugo-deploy.sh b/hugo-deploy.sh index e7e9644..6ee5f6d 100644 --- a/hugo-deploy.sh +++ b/hugo-deploy.sh @@ -3,6 +3,6 @@ USER=remote-user HOST=remote-host.tld DIR=/remote/deployment/directory -hugo && rsync -Pavz -delete public/ ${USER}@${HOST}:${DIR} +hugo && rsync -Pavz --delete public/ ${USER}@${HOST}:${DIR} exit 0