diff options
author | Scott Wittenburg <scott.wittenburg@kitware.com> | 2021-04-30 16:51:43 -0600 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2021-05-07 10:07:53 -0700 |
commit | 91de23ce650ef4dd007b94f67c26e1e6901be354 (patch) | |
tree | 00615f6589684cbbcecf5e51405a496925de8fac /share | |
parent | a3d58129ecc8f8b17ce4fa88b4e7d75d4e0fc6d5 (diff) | |
download | spack-91de23ce650ef4dd007b94f67c26e1e6901be354.tar.gz spack-91de23ce650ef4dd007b94f67c26e1e6901be354.tar.bz2 spack-91de23ce650ef4dd007b94f67c26e1e6901be354.tar.xz spack-91de23ce650ef4dd007b94f67c26e1e6901be354.zip |
install cmd: --no-add in an env installs w/out concretize and add
In an active concretize environment, support installing one or more
cli specs only if they are already present in the environment. The
`--no-add` option is the default for root specs, but optional for
dependency specs. I.e. if you `spack install <depspec>` in an
environment, the dependency-only spec `depspec` will be added as a
root of the environment before being installed. In addition,
`spack install --no-add <spec>` fails if it does not find an
unambiguous match for `spec`.
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/spack-completion.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index 0c4bb8eba1..0c17f29312 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -1063,7 +1063,7 @@ _spack_info() { _spack_install() { if $list_options then - SPACK_COMPREPLY="-h --help --only -u --until -j --jobs --overwrite --fail-fast --keep-prefix --keep-stage --dont-restage --use-cache --no-cache --cache-only --monitor --monitor-no-auth --monitor-keep-going --monitor-host --monitor-prefix --include-build-deps --no-check-signature --require-full-hash-match --show-log-on-error --source -n --no-checksum --deprecated -v --verbose --fake --only-concrete -f --file --clean --dirty --test --run-tests --log-format --log-file --help-cdash --cdash-upload-url --cdash-build --cdash-site --cdash-track --cdash-buildstamp -y --yes-to-all" + SPACK_COMPREPLY="-h --help --only -u --until -j --jobs --overwrite --fail-fast --keep-prefix --keep-stage --dont-restage --use-cache --no-cache --cache-only --monitor --monitor-no-auth --monitor-keep-going --monitor-host --monitor-prefix --include-build-deps --no-check-signature --require-full-hash-match --show-log-on-error --source -n --no-checksum --deprecated -v --verbose --fake --only-concrete --no-add -f --file --clean --dirty --test --run-tests --log-format --log-file --help-cdash --cdash-upload-url --cdash-build --cdash-site --cdash-track --cdash-buildstamp -y --yes-to-all" else _all_packages fi |