mirror of
https://github.com/rclone/rclone.git
synced 2026-06-28 18:05:12 -04:00
Before this change, with --files-from and --no-traverse, a single file that could not be read (for example permission denied) stopped all the other files in the list being copied. This happened because the error was returned from the listing, which caused the whole source listing to be discarded. This change counts and logs such per-file errors and carries on, so the readable files are still copied and rclone exits with a non-zero error code. Fixes #9115