From 69bc85ee1c52c9bc2de6237cf9397d60e8b9710a Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Mon, 14 Mar 2022 23:05:31 -0400 Subject: [PATCH] BUGFIX! Add trailing slash to rsync command --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index c2a8f6f..fa9c8cb 100644 --- a/shell.nix +++ b/shell.nix @@ -2,7 +2,7 @@ let myUpdateWeddingSite = pkgs.writeShellScriptBin "update-wedding-site" '' - ${pkgs.rsync}/bin/rsync -aP $HOME/.local/source/wedding-site/public ubuntu@chrishayward.xyz:/var/www/wedding + ${pkgs.rsync}/bin/rsync -aP $HOME/.local/source/wedding-site/public/ ubuntu@chrishayward.xyz:/var/www/wedding ''; in