1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-21 04:10:37 +02:00

fix(deploy): fix typo

This commit is contained in:
proletarius101 2023-12-14 18:34:11 +00:00 committed by Hans-Christoph Steiner
parent aa54495388
commit 7775aff1f2

View File

@ -337,6 +337,8 @@ def update_serverwebroot(serverwebroot, repo_section):
excludes = _get_index_excludes(repo_section)
if subprocess.call(rsyncargs + excludes + [repo_section, url]) != 0:
raise FDroidException()
if subprocess.call(rsyncargs + [repo_section, serverwebroot]) != 0:
raise FDroidException()
# upload "current version" symlinks if requested
if config['make_current_version_link'] and repo_section == 'repo':
links_to_upload = []