Skip to content

Commit c36bb20

Browse files
Fixed lowercase bug (#2566)
1 parent fc196e1 commit c36bb20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/misc/src/make-webfont-css.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function (output, family, hs, formats, unhinted) {
1717
if (!WebfontFormatMap.get(ext)) throw new TypeError("Invalid webfont file format " + ext);
1818
}
1919
for (const term of hs) {
20-
const dirSuffix = unhinted ? "-unhinted" : "";
20+
const dirSuffix = unhinted ? "-Unhinted" : "";
2121
const src = formats
2222
.map(
2323
ext =>

0 commit comments

Comments
 (0)