Skip to content

Commit

Permalink
fix recent bug in misc/makezip2.sh where Inter-Italic.var.woff2 would…
Browse files Browse the repository at this point in the history
… not be included when building on a case-sensitive filesystem
  • Loading branch information
rsms committed Oct 4, 2022
1 parent 4ff9d65 commit 2c2e3f9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions misc/makezip2.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash -e
#!/bin/bash
set -e
cd "$(dirname "$0")/.."

OPT_HELP=false
Expand Down Expand Up @@ -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/" &

# ----------------------------------------------------------------------------
Expand Down

0 comments on commit 2c2e3f9

Please sign in to comment.