X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=scripts%2Flttng-ivc%2Fbuild.sh;h=c008944bf11a5985fc2d67088d812a1eb6473ca0;hb=3b6ded166d659bde14b384ce4b3981d4378852ef;hp=08f6b9b8817a11d39074ee86091a31e475994f05;hpb=5f390a0114938eb23c4e34aa6a69b9bbc2b2c3cb;p=lttng-ci.git diff --git a/scripts/lttng-ivc/build.sh b/scripts/lttng-ivc/build.sh index 08f6b9b..c008944 100644 --- a/scripts/lttng-ivc/build.sh +++ b/scripts/lttng-ivc/build.sh @@ -1,4 +1,4 @@ -#!/bin/bash -xu +#!/bin/bash # # Copyright (C) 2017 - Jonathan Rajotte-Julien # @@ -15,8 +15,10 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +set -xu + PYTHON3="python3" -P3_VERSION=$($PYTHON3 -c "import sys;print(sys.version[:3])") +P3_VERSION=$($PYTHON3 -c 'import sys;v = sys.version.split()[0].split("."); print("{}.{}".format(v[0], v[1]))') # Tox does not support long path venv for whatever reason. PYENV_HOME=$(mktemp -d)