amoghrajesh commented on code in PR #35970:
URL: https://github.com/apache/airflow/pull/35970#discussion_r1412785049
##########
dev/breeze/src/airflow_breeze/commands/release_management_commands.py:
##########
@@ -1245,10 +1253,7 @@ def clean_old_provider_artifacts(
# Leave only last version from each type
for versioned_file in package_types[:-1]:
command = ["svn", "rm", versioned_file.base +
versioned_file.version + versioned_file.suffix]
- if not execute:
- get_console().print(f"[info]Running command: {command} in
dry run[\]")
- else:
- subprocess.run(command, check=True)
+ subprocess.run(command, check=True)
Review Comment:
Oh yes. I refactored this portion and missed that entirely!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]