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 185
185
186
186
# build regular subset
187
187
188
- if ! fontmake --subset -u " $TEMP_SOURCE /Hack-Regular.ufo" -o ttf
188
+ if ! pipenv run fontmake --subset -u " $TEMP_SOURCE /Hack-Regular.ufo" -o ttf
189
189
then
190
190
echo " Unable to build the Hack-Regular variant subset. Build canceled." 1>&2
191
191
exit 1
192
192
fi
193
193
194
194
# build bold subset
195
- if ! fontmake --subset -u " $TEMP_SOURCE /Hack-Bold.ufo" -o ttf
195
+ if ! pipenv run fontmake --subset -u " $TEMP_SOURCE /Hack-Bold.ufo" -o ttf
196
196
then
197
197
echo " Unable to build the Hack-Bold variant subset. Build canceled." 1>&2
198
198
exit 1
199
199
fi
200
200
201
201
# build italic subset
202
- if ! fontmake --subset -u " $TEMP_SOURCE /Hack-Italic.ufo" -o ttf
202
+ if ! pipenv run fontmake --subset -u " $TEMP_SOURCE /Hack-Italic.ufo" -o ttf
203
203
then
204
204
echo " Unable to build the Hack-Italic variant subset. Build canceled." 1>&2
205
205
exit 1
206
206
fi
207
207
208
208
# build bold italic subset
209
209
210
- if ! fontmake --subset -u " $TEMP_SOURCE /Hack-BoldItalic.ufo" -o ttf
210
+ if ! pipenv run fontmake --subset -u " $TEMP_SOURCE /Hack-BoldItalic.ufo" -o ttf
211
211
then
212
212
echo " Unable to build the Hack-BoldItalic variant subset. Build canceled." 1>&2
213
213
exit 1
226
226
echo " "
227
227
echo " Attempting DSIG table fixes with fontbakery..."
228
228
echo " "
229
- if ! python postbuild_processing/fixes/fix-dsig.py master_ttf/* .ttf
229
+ if ! pipenv run python postbuild_processing/fixes/fix-dsig.py master_ttf/* .ttf
230
230
then
231
231
echo " Unable to complete DSIG table fixes on the release files"
232
232
exit 1
236
236
echo " "
237
237
echo " Attempting fstype fixes with fontbakery..."
238
238
echo " "
239
- if ! python postbuild_processing/fixes/fix-fstype.py master_ttf/* .ttf
239
+ if ! pipenv run python postbuild_processing/fixes/fix-fstype.py master_ttf/* .ttf
240
240
then
241
241
echo " Unable to complete fstype fixes on the release files"
242
242
exit 1
You can’t perform that action at this time.
0 commit comments