diff options
author | Oliver Breitwieser <oliver.breitwieser@kip.uni-heidelberg.de> | 2020-02-07 03:59:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-06 18:59:16 -0800 |
commit | 22c9f5cbd8b807c6ff101a2af30c5fc4cab2d13b (patch) | |
tree | 1ae90bebfb9661b080541fcb776dc43794f14b0c /share | |
parent | 458c9a22bf16e7e3f9d4475074bcf5ac64c6907e (diff) | |
download | spack-22c9f5cbd8b807c6ff101a2af30c5fc4cab2d13b.tar.gz spack-22c9f5cbd8b807c6ff101a2af30c5fc4cab2d13b.tar.bz2 spack-22c9f5cbd8b807c6ff101a2af30c5fc4cab2d13b.tar.xz spack-22c9f5cbd8b807c6ff101a2af30c5fc4cab2d13b.zip |
Allow installing unsigned binary packages (#11107)
This commit introduces a `--no-check-signature` option for
`spack install` so that unsigned packages can be installed. It is
off by default (signatures required).
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 8a22e342e2..e6b7529452 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -945,7 +945,7 @@ _spack_info() { _spack_install() { if $list_options then - SPACK_COMPREPLY="-h --help --only -u --until -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 --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 --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" else _all_packages fi |