diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2021-11-03 15:09:45 +0100 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2021-11-05 00:15:47 -0700 |
commit | 290f57c77939c7f2a8f8e651d9b97ff5610b2f9a (patch) | |
tree | 814e9cbecd7c4b487a9b5598ba52d11b06003967 /share | |
parent | 652fa663b56971e36dd72dcbc2a1efc9782e0e2b (diff) | |
download | spack-290f57c77939c7f2a8f8e651d9b97ff5610b2f9a.tar.gz spack-290f57c77939c7f2a8f8e651d9b97ff5610b2f9a.tar.bz2 spack-290f57c77939c7f2a8f8e651d9b97ff5610b2f9a.tar.xz spack-290f57c77939c7f2a8f8e651d9b97ff5610b2f9a.zip |
spack spec: add --reuse argument
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 a36366295f..38589ed3ea 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -1635,7 +1635,7 @@ _spack_restage() { _spack_solve() { if $list_options then - SPACK_COMPREPLY="-h --help --show --models -l --long -L --very-long -I --install-status -y --yaml -j --json -c --cover -N --namespaces -t --types --timers --stats --reuse" + SPACK_COMPREPLY="-h --help --show --models -l --long -L --very-long -I --install-status --reuse -y --yaml -j --json -c --cover -N --namespaces -t --types --timers --stats" else _all_packages fi @@ -1644,7 +1644,7 @@ _spack_solve() { _spack_spec() { if $list_options then - SPACK_COMPREPLY="-h --help -l --long -L --very-long -I --install-status -y --yaml -j --json -c --cover -N --namespaces --hash-type -t --types" + SPACK_COMPREPLY="-h --help -l --long -L --very-long -I --install-status --reuse -y --yaml -j --json -c --cover -N --namespaces --hash-type -t --types" else _all_packages fi |