diff options
| author | Justin Santa Barbara <justin@fathomdb.com> | 2010-08-18 22:19:39 +0100 |
|---|---|---|
| committer | Justin Santa Barbara <justin@fathomdb.com> | 2010-08-18 22:19:39 +0100 |
| commit | 7e403e381612e5678aa8f2b9e714d472ba4b3ef0 (patch) | |
| tree | 42ab3a79579184a49249d99e3b77c5efc535b1e2 /tools | |
| parent | d8f8d121a00173cb3f5fb5e496cc010dc179cf19 (diff) | |
Fix to better reflect (my believed intent) as to the meaning of error_ok (ignore stderr vs accept failure)
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/install_venv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py index a9154fc33..1f0fa3cc7 100644 --- a/tools/install_venv.py +++ b/tools/install_venv.py @@ -37,7 +37,7 @@ def die(message, *args): sys.exit(1) -def run_command(cmd, redirect_output=True, check_exit_code=False): +def run_command(cmd, redirect_output=True, check_exit_code=True): """ Runs a command in an out-of-process shell, returning the output of that command. Working directory is ROOT. |
