/
githubmirror
/
FiraCode
Обзор
Документация
Войти
/
githubmirror
/
FiraCode
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.203
release.sh
21 строка
559 B
Nikita Prokopov
removed Retina weight from webfonts
18 июл 2016, 18:14
18 июл 2016, 18:14
d78fd52
Код
Авторство
О чём код?
#!/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 ..