diff options
author | Matthias Wolf <matthias.wolf@epfl.ch> | 2020-12-04 00:04:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-03 15:04:13 -0800 |
commit | 794b60f7e719b4a96ce0fa2a09774a9b6239e58d (patch) | |
tree | a9cbf0b5cb631908298860de770b2ee9db640d07 | |
parent | d6765fe95d8647dc4754736b5b7b93fc8ecd7802 (diff) | |
download | spack-794b60f7e719b4a96ce0fa2a09774a9b6239e58d.tar.gz spack-794b60f7e719b4a96ce0fa2a09774a9b6239e58d.tar.bz2 spack-794b60f7e719b4a96ce0fa2a09774a9b6239e58d.tar.xz spack-794b60f7e719b4a96ce0fa2a09774a9b6239e58d.zip |
environment installs: fix reporting. (#20004)
PR #15702 changed the invocation of the report context when installing
specs, do the same when building environments.
-rw-r--r-- | lib/spack/spack/cmd/install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/install.py b/lib/spack/spack/cmd/install.py index 3b5954b1ad..8f3902d71c 100644 --- a/lib/spack/spack/cmd/install.py +++ b/lib/spack/spack/cmd/install.py @@ -255,7 +255,7 @@ environment variables: reporter.specs = specs tty.msg("Installing environment {0}".format(env.name)) - with reporter: + with reporter('build'): env.install_all(args, **kwargs) tty.debug("Regenerating environment views for {0}" |