diff options
author | eugeneswalker <38933153+eugeneswalker@users.noreply.github.com> | 2020-12-03 15:27:01 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-03 15:27:01 -0800 |
commit | badf3368ad863fd0b7b81a45e14d8302490a4e29 (patch) | |
tree | f1acda3c843342685764c587a61936e32848309c /share | |
parent | 794b60f7e719b4a96ce0fa2a09774a9b6239e58d (diff) | |
download | spack-badf3368ad863fd0b7b81a45e14d8302490a4e29.tar.gz spack-badf3368ad863fd0b7b81a45e14d8302490a4e29.tar.bz2 spack-badf3368ad863fd0b7b81a45e14d8302490a4e29.tar.xz spack-badf3368ad863fd0b7b81a45e14d8302490a4e29.zip |
allow install of build-deps from cache via --include-build-deps switch (#19955)
* allow install of build-deps from cache via --include-build-deps switch
* make clear that --include-build-deps is useful for CI pipeline troubleshooting
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 bf44039ad9..7697cacdc3 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -1020,7 +1020,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 --require-full-hash-match --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 --include-build-deps --no-check-signature --require-full-hash-match --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 |