From ece12bce766ccd8a891f62e1d3c9f6a37a1ba841 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Tue, 17 Dec 2024 17:37:43 +0100 Subject: [PATCH] scripts/rsynchydra: fix specifying target directory --- home/scripts/reporsync.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home/scripts/reporsync.nix b/home/scripts/reporsync.nix index c5fcb4c..8412c8c 100644 --- a/home/scripts/reporsync.nix +++ b/home/scripts/reporsync.nix @@ -79,6 +79,7 @@ rsynchydra() { _parse_rsync_args "$@" - _do_rsync "$RR_FROM" "hydra01" "$RR_TARGET" + # the name of RR_TO is a bit misleading, it just describes the 2nd positional arg here + _do_rsync "$RR_FROM" "hydra01" "$RR_TO" } ''