diff options
author | kwryankrattiger <80296582+kwryankrattiger@users.noreply.github.com> | 2022-09-29 13:48:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-29 13:48:06 -0500 |
commit | a01c36da455d0911c240152cf4b4b980b45bb60d (patch) | |
tree | f992733a73aae906529be5559b02a5862b0a8138 /share | |
parent | 7a25f416b8c641e8d3eb004d9c6349a647bab531 (diff) | |
download | spack-a01c36da455d0911c240152cf4b4b980b45bb60d.tar.gz spack-a01c36da455d0911c240152cf4b4b980b45bb60d.tar.bz2 spack-a01c36da455d0911c240152cf4b4b980b45bb60d.tar.xz spack-a01c36da455d0911c240152cf4b4b980b45bb60d.zip |
Install: Add use-buildcache option to install (#32537)
Install: Add use-buildcache option to install
* Allow differentiating between top level packages and dependencies when
determining whether to install from the cache or not.
* Add unit test for --use-buildcache
* Use metavar to display use-buildcache options.
* Update spack-completion
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 c91b888f09..1543cffd92 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -1188,7 +1188,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 --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" + SPACK_COMPREPLY="-h --help --only -u --until -j --jobs --overwrite --fail-fast --keep-prefix --keep-stage --dont-restage --use-cache --no-cache --cache-only --use-buildcache --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 |