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

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

АвторRasmus Andersson
КоммитерRasmus Andersson
3 года назад
Файлов изменено: 1
+3
–2
2c2e3f9
Родители 4ff9d65 master
misc/makezip2.sh
@@ -1,4 +1,5 @@
#!/bin/bash -e
#!/bin/bash
set -e
cd "$(dirname "$0")/.."
OPT_HELP=false
@@ -76,7 +77,7 @@
# 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/" &
# ----------------------------------------------------------------------------

Cherry-pick

Команда cherry-pick позволяет выбрать отдельные коммиты из одной ветки и применить их к другой.