소스 검색
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
5 년 전
committed by
GitHub
No known key found for this signature in database
GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일과
2개의 추가작업 그리고
2개의 파일을 삭제
-
libexec/pyenv-help
|
|
|
@ -27,8 +27,8 @@ command_path() { |
|
|
|
} |
|
|
|
|
|
|
|
extract_initial_comment_block() { |
|
|
|
LC_ALL=C |
|
|
|
LANG=C |
|
|
|
LC_ALL= \ |
|
|
|
LC_CTYPE=C \ |
|
|
|
sed -ne " |
|
|
|
/^#/ !{ |
|
|
|
q |
|
|
|
|