We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c688e81 commit 12f6db9Copy full SHA for 12f6db9
tools/release/cleanup_dev_releases.py
@@ -49,8 +49,9 @@ def main(arg_strings=None):
49
args = parser.parse_args(arg_strings)
50
version = args.version
51
dry_run = args.dry_run
52
+ print(f"DEBUG: {dry_run} {type(dry_run)}") # noqa: T201
53
if dry_run:
- print("Running in dry_run mode. No releases or tags will be deleted.") # noqa: T201
54
+ print("⚠️ DRY RUN MODE ENABLED ⚠️") # noqa: T201
55
extension = args.extension
56
57
github_path = Git.get_github_path()
0 commit comments