diff options
author | Patrick Gartung <gartung@fnal.gov> | 2020-01-30 10:56:10 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-30 10:56:10 -0600 |
commit | 23a7feb91741f8be42b17fe1d02fbbddaa751810 (patch) | |
tree | 8d25fdd4673a7de105f1e3a60b67aa05e248d64b /share | |
parent | a5b2347cfe500c37c2af55b89950ce10f036e416 (diff) | |
download | spack-23a7feb91741f8be42b17fe1d02fbbddaa751810.tar.gz spack-23a7feb91741f8be42b17fe1d02fbbddaa751810.tar.bz2 spack-23a7feb91741f8be42b17fe1d02fbbddaa751810.tar.xz spack-23a7feb91741f8be42b17fe1d02fbbddaa751810.zip |
Limit the number of spec files downloaded to find matches for buildcaches (#14659)
* Limit the number of spec flies downloaded to find matches
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 20a5d936ea..b408d0b234 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -400,7 +400,7 @@ _spack_buildcache_install() { _spack_buildcache_list() { if $list_options then - SPACK_COMPREPLY="-h --help -l --long -L --very-long -v --variants -f --force" + SPACK_COMPREPLY="-h --help -l --long -L --very-long -v --variants -f --force -a --arch" else _all_packages fi |