fix recent bug in misc/makezip2.sh where Inter-Italic.var.woff2 would not be included when building on a case-sensitive filesystem

This commit is contained in:
Rasmus Andersson 2022-10-04 10:08:21 -07:00
parent 4ff9d65fc2
commit 2c2e3f91b0

View file

@ -1,4 +1,5 @@
#!/bin/bash -e
#!/bin/bash
set -e
cd "$(dirname "$0")/.."
OPT_HELP=false
@ -76,7 +77,7 @@ cp $FONTDIR/var/Inter*.var.ttf "$ZIPDIR/Variable/" &
# Web
cp $FONTDIR/static/Inter-*.woff* "$ZIPDIR/Web/" &
cp $FONTDIR/var/Inter.var.woff2 "$ZIPDIR/Web/" &
cp $FONTDIR/var/Inter-italic.var.woff2 "$ZIPDIR/Web/" &
cp $FONTDIR/var/Inter-Italic.var.woff2 "$ZIPDIR/Web/" &
cp misc/dist/inter.css "$ZIPDIR/Web/" &
# ----------------------------------------------------------------------------