Skip to content
Snippets Groups Projects
Commit d978cfbb authored by Massimiliano Culpo's avatar Massimiliano Culpo Committed by Adam J. Stewart
Browse files

Fixes the bug in spack configure spotted in #6833 (#6837)

parent d1aee2c2
Branches
Tags
No related merge requests found
...@@ -667,7 +667,7 @@ def child_process(child_pipe, input_stream): ...@@ -667,7 +667,7 @@ def child_process(child_pipe, input_stream):
except StopIteration as e: except StopIteration as e:
# StopIteration is used to stop installations # StopIteration is used to stop installations
# before the final stage, mainly for debug purposes # before the final stage, mainly for debug purposes
tty.msg(e.message) tty.msg(e)
child_pipe.send(None) child_pipe.send(None)
except BaseException: except BaseException:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment