Add missing --relative flag to rsync in percent-full mover script

This commit is contained in:
Alan Millar 2024-07-18 12:14:02 -07:00
parent 40359df453
commit 85ce7d6178

View File

@ -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