summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorGreg Becker <becker33@llnl.gov>2019-11-22 11:17:37 -0700
committerGitHub <noreply@github.com>2019-11-22 11:17:37 -0700
commit6c55a7c85f233bd1ec343e0b0299477909649975 (patch)
treefe5fbd7bbd70549040bff08047ff322824bee720 /share
parentf53abbecd3474de4c03e15ffd6588c187a7a2357 (diff)
downloadspack-6c55a7c85f233bd1ec343e0b0299477909649975.tar.gz
spack-6c55a7c85f233bd1ec343e0b0299477909649975.tar.bz2
spack-6c55a7c85f233bd1ec343e0b0299477909649975.tar.xz
spack-6c55a7c85f233bd1ec343e0b0299477909649975.zip
cmd/install: remove unused install_status option (#13751)
* cmd/install: remove unused install_status option * update bash completions for spack install
Diffstat (limited to 'share')
-rwxr-xr-xshare/spack/spack-completion.bash13
1 files changed, 7 insertions, 6 deletions
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash
index 5e8936125f..3cda07ec48 100755
--- a/share/spack/spack-completion.bash
+++ b/share/spack/spack-completion.bash
@@ -635,12 +635,13 @@ function _spack_info {
function _spack_install {
if $list_options
then
- compgen -W "-h --help --only -j --jobs -I --install-status
- --overwrite --keep-prefix --keep-stage --dont-restage
- --use-cache --no-cache --show-log-on-error --source
- -n --no-checksum -v --verbose --fake --only-concrete
- -f --file --clean --dirty --test --log-format --log-file
- --cdash-upload-url -y --yes-to-all" -- "$cur"
+ compgen -W "-h --help --only -j --jobs --overwrite --keep-prefix
+ --keep-stage --dont-restage --use-cache --no-cache
+ --cache-only --show-log-on-error --source -n --no-checksum
+ -v --verbose --fake --only-concrete -f --file --clean
+ --dirty --test --run-tests --log-format --log-file
+ --cdash-upload-url --cdash-build --cdash-site --cdash-track
+ --cdash-buildstamp -y --yes-to-all" -- "$cur"
else
compgen -W "$(_all_packages)" -- "$cur"
fi