aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts')
-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)