diff options
author | Martin Blanchard <martin.blanchard@codethink.co.uk> | 2018-07-30 13:42:49 +0100 |
---|---|---|
committer | Valentin David <valentin.david@gmail.com> | 2018-08-14 07:12:45 +0000 |
commit | 7a9cd5ffbaf24ca96677940ca5b3ef28fcacc847 (patch) | |
tree | 37c12244ba066e847dce31c02237da21cc09643d | |
parent | 3088aca2b869c791442cca57fe5feb810a09a070 (diff) | |
download | buildstream-7a9cd5ffbaf24ca96677940ca5b3ef28fcacc847.tar.gz |
_stream.py: Print details on checkout failure
-rw-r--r-- | buildstream/_stream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_stream.py b/buildstream/_stream.py index 798ab9a33..252bed26e 100644 --- a/buildstream/_stream.py +++ b/buildstream/_stream.py @@ -437,7 +437,7 @@ class Stream(): except BstError as e: raise StreamError("Error while staging dependencies into a sandbox" - ": '{}'".format(e), reason=e.reason) from e + ": '{}'".format(e), detail=e.detail, reason=e.reason) from e # workspace_open # |