Browse Source
Merge pull request #1346 from grunthos503/master
Add missing --relative flag to rsync in percent-full mover script
pull/1377/head
trapexit
7 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
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 |