From 32487610522b2bf9300dea890a859d33afe1a5f3 Mon Sep 17 00:00:00 2001 From: Alan Millar Date: Thu, 18 Jul 2024 11:42:27 -0700 Subject: [PATCH] Add missing --relative flag to rsync in percent-full mover script --- tools/mergerfs.percent-full-mover | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mergerfs.percent-full-mover b/tools/mergerfs.percent-full-mover index bf52b6cc0..aad5965cb 100755 --- a/tools/mergerfs.percent-full-mover +++ b/tools/mergerfs.percent-full-mover @@ -17,5 +17,5 @@ do head -n 1 | \ cut -d' ' -f2-) test -n "${FILE}" - rsync -axqHAXWESR --preallocate --remove-source-files "${CACHE}/./${FILE}" "${BACKING}/" + rsync -axqHAXWESR --preallocate --relative --remove-source-files "${CACHE}/./${FILE}" "${BACKING}/" done