Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes rsync for mac sequoia #71

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/sphinx-doc/sphinx/issues/12339>`.
- Adding `-i` to rsync stream command to accommodate issues with new Mac OS Sequoia

3.0.4 (03-08-2024)
------------------
Expand Down
2 changes: 1 addition & 1 deletion python/sdss_access/sync/rsync.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading