From c68e027c01131a4897349d49b322543cc0fbd912 Mon Sep 17 00:00:00 2001 From: Fabrice Mouhartem Date: Sat, 19 Oct 2024 17:45:42 +0200 Subject: [PATCH] fix(invoke): publishing with simpler options --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index b0b04ef..4fb5051 100644 --- a/tasks.py +++ b/tasks.py @@ -137,7 +137,7 @@ def publish(c): """Publish to production via rsync""" pelican_run("-s {settings_publish}".format(**CONFIG)) c.run( - 'rsync --delete --exclude ".DS_Store" -pthrvz -c ' + 'rsync --delete --exclude ".DS_Store" -rv -c ' '-e "ssh -p {ssh_port}" ' "{} {ssh_user}@{ssh_host}:{ssh_path}".format( CONFIG["deploy_path"].rstrip("/") + "/", **CONFIG