12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #!/bin/sh
- 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
- pipenv install --ignore-pipfile
- if ! pipenv run fontmake --version
- then
- echo "Unable to detect fontmake install with pipenv. Please repeat your build attempt." 1>&2
- exit 1
- fi
- if ! pipenv run python -c "import fontTools"
- then
- echo "Unable to detect fontTools install with pipenv. Please repeat your build attempt." 1>&2
- exit 1
- fi
- echo "================================="
- echo " PYTHON BUILD ENVIRONMENT"
- echo "================================="
- echo " "
- echo "Python interpreter version:"
- pipenv run python --version
- echo " "
- pipenv graph
- echo " "
- echo "================================="
- echo " "
- echo "================================="
- echo " "
|