diff options
author | Scott Wittenburg <scott.wittenburg@kitware.com> | 2022-01-28 09:49:15 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2022-05-13 10:45:12 -0700 |
commit | f6e7c0b740035a4d4eb5e3cbb356384dd295b8bb (patch) | |
tree | e28f11e44d961b66653fa3501625d92e53060ecf /share | |
parent | 512645ff2efbf522aefc55e9384a9f5025c98d91 (diff) | |
download | spack-f6e7c0b740035a4d4eb5e3cbb356384dd295b8bb.tar.gz spack-f6e7c0b740035a4d4eb5e3cbb356384dd295b8bb.tar.bz2 spack-f6e7c0b740035a4d4eb5e3cbb356384dd295b8bb.tar.xz spack-f6e7c0b740035a4d4eb5e3cbb356384dd295b8bb.zip |
hashes: remove full_hash and build_hash from spack
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/spack-completion.bash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index 551608c751..5e40746276 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -544,7 +544,7 @@ _spack_buildcache_preview() { } _spack_buildcache_check() { - SPACK_COMPREPLY="-h --help -m --mirror-url -o --output-file --scope -s --spec --spec-file --rebuild-on-error" + SPACK_COMPREPLY="-h --help -m --mirror-url -o --output-file --scope -s --spec --spec-file" } _spack_buildcache_download() { @@ -1174,7 +1174,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-save-local --monitor-tags --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 --log-format --log-file --help-cdash --cdash-upload-url --cdash-build --cdash-site --cdash-track --cdash-buildstamp -y --yes-to-all -U --fresh --reuse" + 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-save-local --monitor-tags --monitor-keep-going --monitor-host --monitor-prefix --include-build-deps --no-check-signature --show-log-on-error --source -n --no-checksum --deprecated -v --verbose --fake --only-concrete --no-add -f --file --clean --dirty --test --log-format --log-file --help-cdash --cdash-upload-url --cdash-build --cdash-site --cdash-track --cdash-buildstamp -y --yes-to-all -U --fresh --reuse" else _all_packages fi |