This commit is contained in:
2019-09-22 19:36:02 -04:00
parent 5113911faa
commit 62b71a1bef
2 changed files with 7 additions and 2 deletions
+6 -1
View File
@@ -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
+1 -1
View File
@@ -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"]