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

fix(deploy): missing index files trigger errors

This commit is contained in:
proletarius101 2024-06-05 18:13:37 +08:00
parent bae8858607
commit 2b1b6c842d
No known key found for this signature in database

View File

@ -549,7 +549,7 @@ def update_serverwebroot(serverwebroot, repo_section):
files_to_upload = _get_index_file_paths(repo_section)
files_to_upload = _remove_missing_files(files_to_upload)
rsyncargs += _get_index_file_paths(repo_section)
rsyncargs += files_to_upload
rsyncargs += [f'{url}/{repo_section}/']
logging.info(rsyncargs)
if subprocess.call(rsyncargs) != 0: