From 62b71a1bef216ab1bbb4db627481e5824400f41b Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 22 Sep 2019 19:36:02 -0400 Subject: [PATCH] v0.9.1 --- bake/bakefile.py | 7 ++++++- setup.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/bake/bakefile.py b/bake/bakefile.py index 325c3a7..f709e16 100644 --- a/bake/bakefile.py +++ b/bake/bakefile.py @@ -561,7 +561,12 @@ class TaskScript(BaseAction): if debug: click.echo(f" {click.style('$', fg='green')} {script}", err=True) - bash = Bash(interactive=interactive) + if silent: + bash_interactive = True + else: + bash_interactive = interactive + + bash = Bash(interactive=bash_interactive) return bash.command(script, quote=False) @property diff --git a/setup.py b/setup.py index 0130ee6..2fadac4 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ URL = "https://github.com/kennethreitz/bake" EMAIL = "me@kennethreitz.org" AUTHOR = "Kenneth Reitz" REQUIRES_PYTHON = ">=3.6.0" -VERSION = "0.9.0" +VERSION = "0.9.1" # What packages are required for this module to be executed? REQUIRED = ["click", "delegator.py", "pygments", "networkx"]