diff options
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/bash/spack-completion.in | 2 | ||||
-rwxr-xr-x | share/spack/spack-completion.bash | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/share/spack/bash/spack-completion.in b/share/spack/bash/spack-completion.in index bda2731ed5..ae9cbc555c 100755 --- a/share/spack/bash/spack-completion.in +++ b/share/spack/bash/spack-completion.in @@ -55,7 +55,7 @@ _bash_completion_spack() { # For our purposes, flags should not affect tab completion. For instance, # `spack install []` and `spack -d install --jobs 8 []` should both give the same # possible completions. Therefore, we need to ignore any flags in COMP_WORDS. - local COMP_WORDS_NO_FLAGS=() + local -a COMP_WORDS_NO_FLAGS local index=0 while [[ "$index" -lt "$COMP_CWORD" ]] do diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index 62645bd6ac..c76eb7d4a8 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -55,7 +55,7 @@ _bash_completion_spack() { # For our purposes, flags should not affect tab completion. For instance, # `spack install []` and `spack -d install --jobs 8 []` should both give the same # possible completions. Therefore, we need to ignore any flags in COMP_WORDS. - local COMP_WORDS_NO_FLAGS=() + local -a COMP_WORDS_NO_FLAGS local index=0 while [[ "$index" -lt "$COMP_CWORD" ]] do |