mirror of
https://github.com/rsms/inter.git
synced 2024-11-17 07:47:33 +01:00
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:
parent
4ff9d65fc2
commit
2c2e3f91b0
1 changed files with 3 additions and 2 deletions
|
@ -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/" &
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue