You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
325 B
16 lines
325 B
from subprocess import call
|
|
import os
|
|
import json
|
|
|
|
BUILDER_PATH = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
def main():
|
|
generate_font_files()
|
|
|
|
def generate_font_files():
|
|
print "Generate Fonts"
|
|
cmd = "fontforge -script %s/generate_font.py" % (BUILDER_PATH)
|
|
call(cmd, shell=True)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|