summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorDanny McClanahan <1305167+cosmicexplorer@users.noreply.github.com>2021-03-10 17:44:50 +0000
committerGitHub <noreply@github.com>2021-03-10 09:44:50 -0800
commitf0275e84adcca97c6801108a94979f765cba01d2 (patch)
treef5b6fdc86acaf76b3f87e95cb3eb1b90b965757c /share
parent05dfd94ed7e5888dbae793637919d37de8fc89dd (diff)
downloadspack-f0275e84adcca97c6801108a94979f765cba01d2.tar.gz
spack-f0275e84adcca97c6801108a94979f765cba01d2.tar.bz2
spack-f0275e84adcca97c6801108a94979f765cba01d2.tar.xz
spack-f0275e84adcca97c6801108a94979f765cba01d2.zip
fix setup-env.sh on older linux zsh (#21721)
Diffstat (limited to 'share')
-rwxr-xr-xshare/spack/bash/spack-completion.in2
-rwxr-xr-xshare/spack/spack-completion.bash2
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