diff options
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/spack-completion.bash | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index ea4a630691..cf0e79cdac 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -473,18 +473,22 @@ _spack_ci() { then SPACK_COMPREPLY="-h --help" else - SPACK_COMPREPLY="generate rebuild" + SPACK_COMPREPLY="generate rebuild rebuild-index" fi } _spack_ci_generate() { - SPACK_COMPREPLY="-h --help --output-file --copy-to --optimize --dependencies" + SPACK_COMPREPLY="-h --help --output-file --copy-to --optimize --dependencies --prune-dag --no-prune-dag --check-index-only" } _spack_ci_rebuild() { SPACK_COMPREPLY="-h --help" } +_spack_ci_rebuild_index() { + SPACK_COMPREPLY="-h --help" +} + _spack_clean() { if $list_options then |