Set LANG before pip install for related-bug

Trying this as an alternative to [1]

[1] https://review.opendev.org/c/openstack/tripleo-quickstart/+/802395
Related-Bug: 1938079

Change-Id: I6349254c02f33bc43220446d3208eb84b34c0daa
This commit is contained in:
Marios Andreou 2021-07-27 10:51:27 +03:00
parent 7ccb38c76b
commit c9bc2dd1df
1 changed files with 1 additions and 0 deletions

View File

@ -210,6 +210,7 @@ install_virtual_env(){
if [[ $(python_cmd) == 'python2' ]]; then
$(python_cmd) -m pip install pip==20.1.1
else
export LANG=en_US.UTF8 # https://bugs.launchpad.net/tripleo/+bug/1938079
$(python_cmd) -m pip install pip --upgrade
fi