diff options
author | Richarda Butler <39577672+RikkiButler20@users.noreply.github.com> | 2020-09-08 12:18:25 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-08 13:18:25 -0700 |
commit | d721bd80708db0498119c0f48b420afc9010ed63 (patch) | |
tree | a77c1d53d2428478f6185b7541096a3e70d4f699 /share | |
parent | ccd65895a63261b2c80a054ced8e29df50dcd25f (diff) | |
download | spack-d721bd80708db0498119c0f48b420afc9010ed63.tar.gz spack-d721bd80708db0498119c0f48b420afc9010ed63.tar.bz2 spack-d721bd80708db0498119c0f48b420afc9010ed63.tar.xz spack-d721bd80708db0498119c0f48b420afc9010ed63.zip |
commands: update help for `spack install --yes-to-all` (#18367)
`spack install --yes-to-all` doesn't actually make the build non-interactive,
but that is why people typically use it. This documents that you must also
specify `--no-checksum` for a fully non-interactive build.
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 d4b6be2609..f77f60dfc9 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -1002,7 +1002,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 --no-check-signature --show-log-on-error --source -n --no-checksum -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 --no-check-signature --show-log-on-error --source -n --no-checksum -v --verbose --fake --only-concrete -f --file --clean --dirty --test --run-tests --log-format --log-file --help-cdash -y --yes-to-all --cdash-upload-url --cdash-build --cdash-site --cdash-track --cdash-buildstamp" else _all_packages fi |