From 85ce7d6178ef81edaa164ebff1a125c1bc4d46f5 Mon Sep 17 00:00:00 2001 From: Alan Millar Date: Thu, 18 Jul 2024 12:14:02 -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 bf52b6cc..aad5965c 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