From 98ecac463e167eadb34e5329a625af6f8963ff92 Mon Sep 17 00:00:00 2001 From: Hikari Date: Tue, 3 Mar 2026 15:22:53 -0800 Subject: [PATCH] feat: add --delete flag to push.sh for exact mirroring --- push.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/push.sh b/push.sh index e145e90..910c450 100755 --- a/push.sh +++ b/push.sh @@ -1,3 +1,3 @@ echo "Pushing nginx to prod" -rsync --archive --verbose --rsync-path="sudo rsync" nginx/nginx/ prod:/etc/nginx +rsync --archive --verbose --delete --rsync-path="sudo rsync" nginx/nginx/ prod:/etc/nginx echo "All done!"