diff options
Diffstat (limited to 'apexer/apexer.py')
-rw-r--r-- | apexer/apexer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apexer/apexer.py b/apexer/apexer.py index 1aeefd1..669d646 100644 --- a/apexer/apexer.py +++ b/apexer/apexer.py @@ -85,7 +85,7 @@ def RunCommand(cmd, verbose=False, env=None): cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=env) output, _ = p.communicate() - if verbose: + if verbose or p.returncode is not 0: print(output.rstrip()) assert p.returncode is 0, "Failed to execute: " + " ".join(cmd) |