Skip to content

Commit 1700e78

Browse files
committed
[build-pipenv.sh] modified if blocks in shell script
1 parent e3c0e97 commit 1700e78

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

build-pipenv.sh

100644100755
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414
if ! which pipenv
1515
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
1717
exit 1
18-
done
18+
fi
1919

2020
# install fontTools and fontmake build dependencies with pipenv
2121
pipenv install --ignore-pipfile fontmake fontTools
@@ -25,26 +25,26 @@ if ! pipenv run fontmake --version
2525
then
2626
echo "Unable to detect fontmake install with pipenv. Please repeat your build attempt." 1>&2
2727
exit 1
28-
done
28+
fi
2929

3030
# test for fontTools install in venv
3131
if ! pipenv run python -c "import fontTools"
3232
then
3333
echo "Unable to detect fontTools install with pipenv. Please repeat your build attempt." 1>&2
3434
exit 1
35-
done
35+
fi
3636

3737
# print environment used for build to std output stream
3838

3939
echo "================================="
40-
echo " BUILD ENVIRONMENT"
40+
echo " PYTHON BUILD ENVIRONMENT"
4141
echo "================================="
4242
echo " "
4343

4444
pipenv graph
4545

4646
echo " "
4747
echo "================================="
48-
echo " END BUILD ENVIRONMENT"
48+
echo " END PYTHON BUILD ENVIRONMENT"
4949
echo "================================="
5050
echo " "

0 commit comments

Comments
 (0)