From 13ee7adc5317a761ff1cb5b7d58d577f45ef966a Mon Sep 17 00:00:00 2001 From: Rogin Farrer Date: Fri, 10 Sep 2021 23:50:57 -0400 Subject: [PATCH] Fix glyph directory path This should fix * https://github.com/ryanoasis/nerd-fonts/issues/495 * https://github.com/ryanoasis/nerd-fonts/issues/659 * https://github.com/ryanoasis/nerd-fonts/issues/662 --- font-patcher | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/font-patcher b/font-patcher index aa25fcd..3120a51 100755 --- a/font-patcher +++ b/font-patcher @@ -85,7 +85,7 @@ class font_patcher: if symfont: symfont.close() symfont = None - symfont = fontforge.open(__dir__ + "/src/glyphs/" + patch['Filename']) + symfont = fontforge.open(__dir__ + "/src/" + patch['Filename']) # Match the symbol font size to the source font size symfont.em = self.sourceFont.em