diff options
author | iarspider <iarspider@gmail.com> | 2022-04-26 00:54:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 15:54:54 -0700 |
commit | 834f8e04ca362195f9a971d1f90b43ce52f78cc4 (patch) | |
tree | 12fc632c437a0bafabdb78ae4459b6843ed906cc /share | |
parent | 3ade5516a2f8b9ec998273c0f14884eb217415d0 (diff) | |
download | spack-834f8e04ca362195f9a971d1f90b43ce52f78cc4.tar.gz spack-834f8e04ca362195f9a971d1f90b43ce52f78cc4.tar.bz2 spack-834f8e04ca362195f9a971d1f90b43ce52f78cc4.tar.xz spack-834f8e04ca362195f9a971d1f90b43ce52f78cc4.zip |
Environments: add flag to skip printing concretized specs (#30272)
With an active environment, you can now run "spack concretize --quiet"
and it will suppress printing the concretized specs.
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/spack-completion.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index b0870551f6..cc6ca6ab56 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -709,7 +709,7 @@ _spack_compilers() { } _spack_concretize() { - SPACK_COMPREPLY="-h --help -f --force --test -U --fresh --reuse" + SPACK_COMPREPLY="-h --help -f --force --test -q --quiet -U --fresh --reuse" } _spack_config() { |