Skip to content

Commit 6a450f2

Browse files
committed
install.sh: Set locale to UTF-8
This fixes issues with entering non-ASCII characters in prompts (names, passwords) Fixes: #53 Signed-off-by: Hector Martin <[email protected]>
1 parent c3ca2f3 commit 6a450f2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
set -e
55

6-
export LC_ALL=C
7-
export LANG=C
6+
export LC_ALL=UTF-8
7+
export LANG=UTF-8
88

99
export DYLD_LIBRARY_PATH=$PWD/Frameworks/Python.framework/Versions/Current/lib
1010
export DYLD_FRAMEWORK_PATH=$PWD/Frameworks

0 commit comments

Comments
 (0)