diff options
author | lpoirel <louis.poirel@gmail.com> | 2022-04-29 01:24:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-28 23:24:10 +0000 |
commit | 9e6298569eabdbcbddf3581e416b6008bcd273ee (patch) | |
tree | 0ab6f1037fa7cd23eb03a530e41739fc7a42e268 /share | |
parent | ad0430f4634a065eb3df35a3ebc449635d861c03 (diff) | |
download | spack-9e6298569eabdbcbddf3581e416b6008bcd273ee.tar.gz spack-9e6298569eabdbcbddf3581e416b6008bcd273ee.tar.bz2 spack-9e6298569eabdbcbddf3581e416b6008bcd273ee.tar.xz spack-9e6298569eabdbcbddf3581e416b6008bcd273ee.zip |
Delocalize type output for bash completion (#30360)
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 f9cf846ec5..56c47a8fa4 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 bff93c12d4..59902d2fd1 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")) |