diff --git a/share/spack/bash/spack-completion.in b/share/spack/bash/spack-completion.in index f9cf846ec5f..56c47a8fa49 100755 --- a/share/spack/bash/spack-completion.in +++ b/share/spack/bash/spack-completion.in @@ -134,7 +134,7 @@ _bash_completion_spack() { # Make sure function exists before calling it local rgx #this dance is necessary to cover bash and zsh regex rgx="$subfunction.*function.* " - if [[ "$(type $subfunction 2>&1)" =~ $rgx ]] + if [[ "$(LC_ALL=C type $subfunction 2>&1)" =~ $rgx ]] then $subfunction COMPREPLY=($(compgen -W "$SPACK_COMPREPLY" -- "$cur")) diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index bff93c12d45..59902d2fd1b 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -134,7 +134,7 @@ _bash_completion_spack() { # Make sure function exists before calling it local rgx #this dance is necessary to cover bash and zsh regex rgx="$subfunction.*function.* " - if [[ "$(type $subfunction 2>&1)" =~ $rgx ]] + if [[ "$(LC_ALL=C type $subfunction 2>&1)" =~ $rgx ]] then $subfunction COMPREPLY=($(compgen -W "$SPACK_COMPREPLY" -- "$cur"))