File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 13
13
14
14
if ! which pipenv
15
15
then
16
- echo " Unable to detect a pipenv install. Please install with ` pip install pipenv` then repeat your build attempt." 1>&2
16
+ echo " Unable to detect a pipenv install. Please install with ' pip install pipenv' then repeat your build attempt." 1>&2
17
17
exit 1
18
- done
18
+ fi
19
19
20
20
# install fontTools and fontmake build dependencies with pipenv
21
21
pipenv install --ignore-pipfile fontmake fontTools
@@ -25,26 +25,26 @@ if ! pipenv run fontmake --version
25
25
then
26
26
echo " Unable to detect fontmake install with pipenv. Please repeat your build attempt." 1>&2
27
27
exit 1
28
- done
28
+ fi
29
29
30
30
# test for fontTools install in venv
31
31
if ! pipenv run python -c " import fontTools"
32
32
then
33
33
echo " Unable to detect fontTools install with pipenv. Please repeat your build attempt." 1>&2
34
34
exit 1
35
- done
35
+ fi
36
36
37
37
# print environment used for build to std output stream
38
38
39
39
echo " ================================="
40
- echo " BUILD ENVIRONMENT"
40
+ echo " PYTHON BUILD ENVIRONMENT"
41
41
echo " ================================="
42
42
echo " "
43
43
44
44
pipenv graph
45
45
46
46
echo " "
47
47
echo " ================================="
48
- echo " END BUILD ENVIRONMENT"
48
+ echo " END PYTHON BUILD ENVIRONMENT"
49
49
echo " ================================="
50
50
echo " "
You can’t perform that action at this time.
0 commit comments