diff options
author | Michael Kuhn <michael.kuhn@ovgu.de> | 2023-07-12 08:54:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-12 08:54:45 +0200 |
commit | d5d0b8821cd9789b8404e06a40dfeabce09a3480 (patch) | |
tree | f09861f4bb756ba54a47cdd87663429de9e51e74 /share | |
parent | d3704130b63fa177bd5786659b3a64fb338c4b00 (diff) | |
download | spack-d5d0b8821cd9789b8404e06a40dfeabce09a3480.tar.gz spack-d5d0b8821cd9789b8404e06a40dfeabce09a3480.tar.bz2 spack-d5d0b8821cd9789b8404e06a40dfeabce09a3480.tar.xz spack-d5d0b8821cd9789b8404e06a40dfeabce09a3480.zip |
installer: Improve status reporting (#37903)
Refactor `TermTitle` into `InstallStatus` and use it to show progress
information both in the terminal title as well as inline. This also
turns on the terminal title status by default.
The inline output will look like the following after this change:
```
==> Installing m4-1.4.19-w2fxrpuz64zdq63woprqfxxzc3tzu7p3 [4/4]
```
Diffstat (limited to 'share')
-rw-r--r-- | share/spack/templates/depfile/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/spack/templates/depfile/Makefile b/share/spack/templates/depfile/Makefile index a50304a8be..dde42cf7d5 100644 --- a/share/spack/templates/depfile/Makefile +++ b/share/spack/templates/depfile/Makefile @@ -1,4 +1,4 @@ -SPACK ?= spack +SPACK ?= spack -c config:install_status:false SPACK_INSTALL_FLAGS ?= # This variable can be used to add post install hooks |