Ver código fonte

Fix 'sed: RE error: illegal byte sequence' (#1714)

... by unsetting `LC_ALL` and passing `LC_CTYPE=C` to `sed`.

This commit fixes issue #1454.
pull/1826/head
tuzi3040 3 anos atrás
committed by GitHub
pai
commit
d51999adf5
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: 4AEE18F83AFDEB23
1 arquivos alterados com 2 adições e 2 exclusões
  1. +2
    -2
      libexec/pyenv-help

+ 2
- 2
libexec/pyenv-help Ver arquivo

@ -27,8 +27,8 @@ command_path() {
}
extract_initial_comment_block() {
LC_ALL=C
LANG=C
LC_ALL= \
LC_CTYPE=C \
sed -ne "
/^#/ !{
q

Carregando…
Cancelar
Salvar