Skip to content

Commit

Permalink
removed Retina weight from webfonts
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Jul 18, 2016
1 parent eef76ca commit d78fd52
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 8 deletions.
8 changes: 0 additions & 8 deletions distr.sh

This file was deleted.

Binary file removed distr/eot/FiraCode-Retina.eot
Binary file not shown.
Binary file removed distr/woff/FiraCode-Retina.woff
Binary file not shown.
Binary file removed distr/woff2/FiraCode-Retina.woff2
Binary file not shown.
21 changes: 21 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

# Remove Retina from webfonts
rm distr/FiraCode-Retina.eot 2> /dev/null
rm distr/FiraCode-Retina.woff 2> /dev/null
rm distr/FiraCode-Retina.woff2 2> /dev/null

# Move to folders
mv distr/*.eot distr/eot/ 2> /dev/null
mv distr/*.woff distr/woff/ 2> /dev/null
mv distr/*.woff2 distr/woff2/ 2> /dev/null
mv distr/*.ttf distr/ttf/ 2> /dev/null
mv distr/*.otf distr/otf/ 2> /dev/null

# Install OTF version
cp distr/otf/*.otf ~/Library/Fonts/

# Pack zip archive
cd distr
find . -not -name ".*" | xargs zip ../FiraCode.zip
cd ..

0 comments on commit d78fd52

Please sign in to comment.