We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
develop
1 parent 140bb59 commit 9aa4919Copy full SHA for 9aa4919
1 file changed
scripts-dev/release.py
@@ -821,7 +821,9 @@ def get_repo_and_check_clean_checkout(
821
f"{path} is not a git repository (expecting a {name} repository)."
822
)
823
while repo.is_dirty():
824
- if not click.confirm(f"Uncommitted changes exist in {path}. Commit or stash them. Ready to continue?"):
+ if not click.confirm(
825
+ f"Uncommitted changes exist in {path}. Commit or stash them. Ready to continue?"
826
+ ):
827
raise click.ClickException("Aborted.")
828
829
return repo
0 commit comments