From 977e72f01f73f00f7746e4c4535e9d14baf90156 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 16 Sep 2019 11:10:46 -0400 Subject: [PATCH] more perfection --- bake/bakefile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bake/bakefile.py b/bake/bakefile.py index 28a51c9..3d4a2ce 100644 --- a/bake/bakefile.py +++ b/bake/bakefile.py @@ -91,7 +91,8 @@ class TaskFilter(BaseAction): else: if not yes: - click.confirm(" Do you want to continue?", abort=True) + question = str(click.style("?", fg="green", bold=True)) + click.confirm(f" {question} Do you want to continue?", abort=True) def execute(self, yes=False, **kwargs): if self.name == "confirm":