summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorOliver Breitwieser <oliver.breitwieser@kip.uni-heidelberg.de>2020-02-07 03:59:16 +0100
committerGitHub <noreply@github.com>2020-02-06 18:59:16 -0800
commit22c9f5cbd8b807c6ff101a2af30c5fc4cab2d13b (patch)
tree1ae90bebfb9661b080541fcb776dc43794f14b0c /share
parent458c9a22bf16e7e3f9d4475074bcf5ac64c6907e (diff)
downloadspack-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-xshare/spack/spack-completion.bash2
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