diff options
author | Greg Becker <becker33@llnl.gov> | 2019-11-22 11:17:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-22 11:17:37 -0700 |
commit | 6c55a7c85f233bd1ec343e0b0299477909649975 (patch) | |
tree | fe5fbd7bbd70549040bff08047ff322824bee720 /lib | |
parent | f53abbecd3474de4c03e15ffd6588c187a7a2357 (diff) | |
download | spack-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 'lib')
-rw-r--r-- | lib/spack/spack/cmd/install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/install.py b/lib/spack/spack/cmd/install.py index 8fd63beede..8c16158b39 100644 --- a/lib/spack/spack/cmd/install.py +++ b/lib/spack/spack/cmd/install.py @@ -72,7 +72,7 @@ the dependencies""" subparser.add_argument( '-u', '--until', type=str, dest='until', 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( '--overwrite', action='store_true', help="reinstall an existing spec, even if it has dependents") |