summaryrefslogtreecommitdiff
path: root/lib/runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/runner.py')
-rw-r--r--lib/runner.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/runner.py b/lib/runner.py
index 672a824..13a17d1 100644
--- a/lib/runner.py
+++ b/lib/runner.py
@@ -690,7 +690,9 @@ class Multipass:
universal_newlines=True,
)
if res.returncode != 0:
- raise RuntimeError(f"make nfpvalues Failure. command = {command}")
+ raise RuntimeError(
+ f"'make nfpvalues' exited with a non-zero status of {res.returncode}. command = {command}, stderr = '{res.stderr}', stdout = '{res.stdout}'"
+ )
return json.loads(res.stdout)
def _cached_info(self, opts=list()) -> list: