diff options
author | Greg Becker <becker33@llnl.gov> | 2022-04-28 02:37:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-28 11:37:15 +0200 |
commit | 3e863848f8f9acd421daed7fe4d0c2578787c06e (patch) | |
tree | 5824a9fbfdef6397141b86d44910fcb397980a98 /share | |
parent | e7a0b952abc2b0cb5d1253ae77cea018ea792636 (diff) | |
download | spack-3e863848f8f9acd421daed7fe4d0c2578787c06e.tar.gz spack-3e863848f8f9acd421daed7fe4d0c2578787c06e.tar.bz2 spack-3e863848f8f9acd421daed7fe4d0c2578787c06e.tar.xz spack-3e863848f8f9acd421daed7fe4d0c2578787c06e.zip |
build_env/test_env: add concretizer args (#30289)
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/spack-completion.bash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index f0c81f11db..90793a2401 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -488,7 +488,7 @@ _spack_bootstrap_untrust() { _spack_build_env() { if $list_options then - SPACK_COMPREPLY="-h --help --clean --dirty --dump --pickle" + SPACK_COMPREPLY="-h --help --clean --dirty -U --fresh --reuse --dump --pickle" else _all_packages fi @@ -1769,7 +1769,7 @@ _spack_test_remove() { _spack_test_env() { if $list_options then - SPACK_COMPREPLY="-h --help --clean --dirty --dump --pickle" + SPACK_COMPREPLY="-h --help --clean --dirty -U --fresh --reuse --dump --pickle" else _all_packages fi |