mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-14 10:13:05 +02:00
Fix rsync include list removed from test.pl in 9ee9b1fa
.
This caused the include list to be ignored and all files to be rsync'd, which worked but took a much longer.
This commit is contained in:
parent
2dfca8a61f
commit
c192ec4561
@ -580,7 +580,8 @@ eval
|
||||
|
||||
# Copy the repo
|
||||
executeTest(
|
||||
"git -C ${strBackRestBase} ls-files -c --others --exclude-standard | rsync -rtW --delete --exclude=test/result" .
|
||||
"git -C ${strBackRestBase} ls-files -c --others --exclude-standard |" .
|
||||
" rsync -rtW --delete --files-from=- --exclude=test/result" .
|
||||
# This option is not supported on MacOS. The eventual plan is to remove the need for it.
|
||||
(trim(`uname`) ne 'Darwin' ? ' --ignore-missing-args' : '') .
|
||||
" ${strBackRestBase}/ ${strRepoCachePath}");
|
||||
|
Loading…
Reference in New Issue
Block a user