monolisa-nerdfont-patch/bin/update-src

16 lines
340 B
Plaintext
Raw Normal View History

2021-12-22 16:34:04 -06:00
#!/usr/bin/env bash
REPO_URL=git@github.com:ryanoasis/nerd-fonts.git
2021-12-22 16:54:18 -06:00
rm -rf nerd-fonts
2021-12-22 16:34:04 -06:00
git clone --filter=blob:none --no-checkout --depth 1 --sparse $REPO_URL
cd nerd-fonts
git sparse-checkout add src/glyphs
git checkout
2022-08-12 13:37:15 -05:00
cp font-patcher ../bin/font-patcher
2021-12-22 16:34:04 -06:00
cp src/glyphs/** ../src/glyphs -r
echo "don't forget to commit your changes!"