aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-09-04 11:46:02 -0400
committerJack Lloyd <[email protected]>2018-09-04 11:46:02 -0400
commitab9b7633a6bbec767976712e3cfe509bea5d1039 (patch)
treedf655822134ddd5360d6c89e1b41910668bfe2d8 /src
parentaa99ccf1d68727e778f92f16e50d215c06386019 (diff)
Repeat the command line in this error message
Diffstat (limited to 'src')
-rwxr-xr-xsrc/scripts/ci_build.py2
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)