From ee180fbffef084f35c98a5afb56a69dc413e1a45 Mon Sep 17 00:00:00 2001 From: Chris Simpkins Date: Fri, 16 Mar 2018 19:30:49 -0400 Subject: [PATCH] [build-pipenv.sh] modified command to create the pipenv virtual environment --- build-pipenv.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build-pipenv.sh b/build-pipenv.sh index a13110f0a..4b02873c3 100755 --- a/build-pipenv.sh +++ b/build-pipenv.sh @@ -11,16 +11,14 @@ # # ///////////////////////////////////////////////////////////////// -BUILD_PYTHON_VERSION="3.6" - if ! which pipenv then echo "Unable to detect a pipenv install. Please install with 'pip install pipenv' then repeat your build attempt." 1>&2 exit 1 fi -# install fontTools and fontmake build dependencies with pipenv -pipenv install --python $BUILD_PYTHON_VERSION --ignore-pipfile fontmake fontTools +# create virtualenv and install build dependencies +pipenv install --ignore-pipfile # test for fontmake install in venv if ! pipenv run fontmake --version