Skip to content

Commit

Permalink
Adjust command to remove uploaded artifacts upon respin (#13853)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
javanna authored Oct 2, 2024
1 parent 2b45e3d commit eaa6214
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-tools/scripts/releaseWizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def maybe_remove_rc_from_svn():
logfile="svn_rm.log",
tee=True,
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 }}"
}
)],
Expand Down

0 comments on commit eaa6214

Please sign in to comment.