mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-03-17 22:47:16 -04:00
fix bad syncing from local copy, force trailing slash to make rsync happy
It seems that paths for rsync must have a trailing slash in order to sync rather than make a subdir, i.e. this makes a duplicate subdir: rsync /tmp/fdroid/repo repo While this syncs the dirs rsync /tmp/fdroid/repo/ repo/
This commit is contained in:
@@ -157,9 +157,9 @@ def _local_sync(fromdir, todir):
|
||||
def sync_from_localcopy(repo_section, local_copy_dir):
|
||||
logging.info('Syncing from local_copy_dir to this repo.')
|
||||
# trailing slashes have a meaning in rsync which is not needed here, so
|
||||
# remove them all
|
||||
_local_sync(os.path.join(local_copy_dir, repo_section).rstrip('/'),
|
||||
repo_section.rstrip('/'))
|
||||
# make sure both paths have exactly one trailing slash
|
||||
_local_sync(os.path.join(local_copy_dir, repo_section).rstrip('/') + '/',
|
||||
repo_section.rstrip('/') + '/')
|
||||
|
||||
|
||||
def update_localcopy(repo_section, local_copy_dir):
|
||||
|
||||
Reference in New Issue
Block a user