Skip to content

Commit

Permalink
fixing rsync
Browse files Browse the repository at this point in the history
  • Loading branch information
havok2063 committed Dec 17, 2024
1 parent 0a9514f commit 223e146
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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

0 comments on commit 223e146

Please sign in to comment.