mirror of
https://github.com/daylinmorgan/monolisa-nerdfont-patch.git
synced 2024-11-14 10:17:53 -06:00
chore: change batteries
This commit is contained in:
parent
014db19418
commit
cdb0d3afe8
1 changed files with 4 additions and 1 deletions
|
@ -6,7 +6,7 @@
|
|||
from __future__ import absolute_import, print_function, unicode_literals
|
||||
|
||||
# Change the script version when you edit this script:
|
||||
script_version = "4.14.3"
|
||||
script_version = "4.14.4"
|
||||
|
||||
version = "3.2.1"
|
||||
projectName = "Nerd Fonts"
|
||||
|
@ -2127,6 +2127,9 @@ def main():
|
|||
|
||||
sourceFonts = []
|
||||
all_fonts = fontforge.fontsInFile(args.font)
|
||||
if not all_fonts:
|
||||
logger.critical("Can not find any fonts in '%s'", args.font)
|
||||
sys.exit(1)
|
||||
for i, subfont in enumerate(all_fonts):
|
||||
if len(all_fonts) > 1:
|
||||
print("\n")
|
||||
|
|
Loading…
Reference in a new issue