Adjust command to remove uploaded artifacts upon respin (#13853)

The command to remove uploaded artifacts from svn is missing a dash, hence it
fails as it does not match the name of the artifacts uploaded at the previous steps.
This commit is contained in:
Luca Cavanna 2024-10-03 00:18:54 +02:00 committed by GitHub
parent 2b45e3d8af
commit eaa6214daf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ def maybe_remove_rc_from_svn():
logfile="svn_rm.log", logfile="svn_rm.log",
tee=True, tee=True,
vars={ vars={
'dist_folder': """lucene-{{ release_version }}-RC{{ rc_number }}-rev{{ build_rc.git_rev | default("<git_rev>", True) }}""", 'dist_folder': """lucene-{{ release_version }}-RC{{ rc_number }}-rev-{{ build_rc.git_rev | default("<git_rev>", True) }}""",
'dist_url': "{{ dist_url_base }}/{{ dist_folder }}" 'dist_url': "{{ dist_url_base }}/{{ dist_folder }}"
} }
)], )],