Use proper $PYTHON in case of UCS2 build and non-bash script

This commit is contained in:
Foo 2018-02-25 22:26:00 +03:00
parent 4a834f38aa
commit 2fc0e8e520
1 changed files with 11 additions and 7 deletions

View File

@ -11,15 +11,19 @@ export LD_LIBRARY_PATH
export USER
export HOME
. tests/bot-ci/scripts/common/main.sh silent
if test -n "$USE_UCS2_PYTHON" && test -n "$BASH_VERSION" ; then
set +e
. virtualenvwrapper.sh
workon cpython-ucs2-$UCS2_PYTHON_VARIANT
set -e
if test -n "$USE_UCS2_PYTHON" ; then
POWERLINE_VIRTUALENV="cpython-ucs2-$UCS2_PYTHON_VARIANT"
PYTHON="$HOME/.virtualenvs/$POWERLINE_VIRTUALENV/bin/python"
if test -n "$BASH_VERSION" ; then
set +e
. virtualenvwrapper.sh
workon "$POWERLINE_VIRTUALENV"
set -e
fi
fi
. tests/bot-ci/scripts/common/main.sh silent
export USER HOME
if test -z "$FAILED" ; then