diff options
author | Jack Lloyd <[email protected]> | 2018-09-04 11:46:02 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-09-04 11:46:02 -0400 |
commit | ab9b7633a6bbec767976712e3cfe509bea5d1039 (patch) | |
tree | df655822134ddd5360d6c89e1b41910668bfe2d8 /src | |
parent | aa99ccf1d68727e778f92f16e50d215c06386019 (diff) |
Repeat the command line in this error message
Diffstat (limited to 'src')
-rwxr-xr-x | src/scripts/ci_build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py index 6626ea18e..66d537d53 100755 --- a/src/scripts/ci_build.py +++ b/src/scripts/ci_build.py @@ -231,7 +231,7 @@ def run_cmd(cmd, root_dir): print("Ran for %d seconds" % (time_taken)) if proc.returncode != 0: - print("Command failed with error code %d" % (proc.returncode)) + print("Command '%s' failed with error code %d" % (' '.join(cmd), proc.returncode)) if cmd[0] not in ['lcov']: sys.exit(proc.returncode) |