From 5e5c47090a191edf8efd39010e34add2ad262be1 Mon Sep 17 00:00:00 2001 From: Matan Breizman Date: Thu, 27 Jan 2022 11:32:28 +0000 Subject: [PATCH] install-deps.sh: set a UTF-8 locale when running pip Signed-off-by: Matan Breizman --- install-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-deps.sh b/install-deps.sh index 6f4cd178fb9..f0185405a66 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -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) -- 2.39.5