Merge pull request #44805 from Matan-B/wip-matanb-deps-unicode

install-deps.sh: set a UTF-8 locale when running pip

Reviewed-by: Kefu Chai <tchaikov@gmail.com>
This commit is contained in:
Matan 2022-01-31 20:38:02 +02:00 committed by GitHub
commit 2a10ab8481
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ mkdir -p $DIR
if test $(id -u) != 0 ; then
SUDO=sudo
fi
export LC_ALL=C # the following is vulnerable to i18n
export LC_ALL=en_US.UTF-8 # the following is vulnerable to i18n
ARCH=$(uname -m)