Skip to content
Snippets Groups Projects
Unverified Commit 6c55a7c8 authored by Greg Becker's avatar Greg Becker Committed by GitHub
Browse files

cmd/install: remove unused install_status option (#13751)

* cmd/install: remove unused install_status option

* update bash completions for spack install
parent f53abbec
No related branches found
No related tags found
No related merge requests found
...@@ -72,7 +72,7 @@ def setup_parser(subparser): ...@@ -72,7 +72,7 @@ def setup_parser(subparser):
subparser.add_argument( subparser.add_argument(
'-u', '--until', type=str, dest='until', default=None, '-u', '--until', type=str, dest='until', default=None,
help="phase to stop after when installing (default None)") help="phase to stop after when installing (default None)")
arguments.add_common_arguments(subparser, ['jobs', 'install_status']) arguments.add_common_arguments(subparser, ['jobs'])
subparser.add_argument( subparser.add_argument(
'--overwrite', action='store_true', '--overwrite', action='store_true',
help="reinstall an existing spec, even if it has dependents") help="reinstall an existing spec, even if it has dependents")
......
...@@ -635,12 +635,13 @@ function _spack_info { ...@@ -635,12 +635,13 @@ function _spack_info {
function _spack_install { function _spack_install {
if $list_options if $list_options
then then
compgen -W "-h --help --only -j --jobs -I --install-status compgen -W "-h --help --only -j --jobs --overwrite --keep-prefix
--overwrite --keep-prefix --keep-stage --dont-restage --keep-stage --dont-restage --use-cache --no-cache
--use-cache --no-cache --show-log-on-error --source --cache-only --show-log-on-error --source -n --no-checksum
-n --no-checksum -v --verbose --fake --only-concrete -v --verbose --fake --only-concrete -f --file --clean
-f --file --clean --dirty --test --log-format --log-file --dirty --test --run-tests --log-format --log-file
--cdash-upload-url -y --yes-to-all" -- "$cur" --cdash-upload-url --cdash-build --cdash-site --cdash-track
--cdash-buildstamp -y --yes-to-all" -- "$cur"
else else
compgen -W "$(_all_packages)" -- "$cur" compgen -W "$(_all_packages)" -- "$cur"
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment