Skip to content

Commit

Permalink
force warn_only=True for fabric
Browse files Browse the repository at this point in the history
  • Loading branch information
trehn committed Mar 2, 2015
1 parent e8bcd37 commit f500b91
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/bundlewrap/operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,12 @@ def run(hostname, command, ignore_failure=False, stderr=None,
with prefix("export LANG=C"):
fabric_result = runner(
command,
shell=True,
pty=pty,
combine_stderr=False,
stdout=stdout,
pty=pty,
quiet=True,
shell=True,
stderr=stderr,
stdout=stdout,
)

LOG.debug("command finished with return code {}".format(fabric_result.return_code))
Expand Down

0 comments on commit f500b91

Please sign in to comment.