Skip to content

Commit d78fd52

Browse files
committed
removed Retina weight from webfonts
1 parent eef76ca commit d78fd52

File tree

5 files changed

+21
-8
lines changed

5 files changed

+21
-8
lines changed

distr.sh

Lines changed: 0 additions & 8 deletions
This file was deleted.

distr/eot/FiraCode-Retina.eot

-87.7 KB
Binary file not shown.

distr/woff/FiraCode-Retina.woff

-101 KB
Binary file not shown.

distr/woff2/FiraCode-Retina.woff2

-74.9 KB
Binary file not shown.

release.sh

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/bin/bash
2+
3+
# Remove Retina from webfonts
4+
rm distr/FiraCode-Retina.eot 2> /dev/null
5+
rm distr/FiraCode-Retina.woff 2> /dev/null
6+
rm distr/FiraCode-Retina.woff2 2> /dev/null
7+
8+
# Move to folders
9+
mv distr/*.eot distr/eot/ 2> /dev/null
10+
mv distr/*.woff distr/woff/ 2> /dev/null
11+
mv distr/*.woff2 distr/woff2/ 2> /dev/null
12+
mv distr/*.ttf distr/ttf/ 2> /dev/null
13+
mv distr/*.otf distr/otf/ 2> /dev/null
14+
15+
# Install OTF version
16+
cp distr/otf/*.otf ~/Library/Fonts/
17+
18+
# Pack zip archive
19+
cd distr
20+
find . -not -name ".*" | xargs zip ../FiraCode.zip
21+
cd ..

0 commit comments

Comments
 (0)