diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 501a8c7..5a1d7e4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,7 @@ This document records the main changes to the sdss_access code. 3.0.5 (unreleased) ------------------ - PR `62` - Fix issue `61`: removed use of ``disutils`` which has been Deprecated in Python 3.12. Also pin Sphinx to ``<7.3.0`` to address `this issue `. +- Adding `-i` to rsync stream command to accommodate issues with new Mac OS Sequoia 3.0.4 (03-08-2024) ------------------ diff --git a/python/sdss_access/sync/rsync.py b/python/sdss_access/sync/rsync.py index 95e2c10..fc26570 100644 --- a/python/sdss_access/sync/rsync.py +++ b/python/sdss_access/sync/rsync.py @@ -29,7 +29,7 @@ def __repr__(self): def get_task_out(self, task=None): if task: - command = "rsync -R %(source)s*" % task + command = "rsync -Ri %(source)s*" % task if self.verbose: print(command) status, out, err = self.stream.cli.foreground_run(command)