fontgen: remove advanced (format string, process as list) from patching

This commit is contained in:
Yehoshua Pesach Wallach 2022-04-27 19:29:28 +03:00 committed by JF
parent f7e8caa04a
commit b6b322efdd
2 changed files with 2 additions and 13 deletions

View File

@ -12,7 +12,7 @@
],
"bpp": 1,
"size": 20,
"patches": ["{file}_zero.patch"]
"patches": ["jetbrains_mono_bold_20.c_zero.patch"]
},
"jetbrains_mono_42": {
"sources": [

View File

@ -66,18 +66,7 @@ def main():
subprocess.check_call(line)
if patches:
for patch in patches:
try:
# Try and patch, if given a string
patch = patch.format(name=name, file=name+'.c')
subprocess.check_call(['/usr/bin/patch', name+'.c', patch])
continue
except: pass
try:
# otherwise, assume a "advanced" patch, which is a list of strings.
patch = [arg.format(name=name, file=name+'.c') for arg in patch]
subprocess.check_call(patch)
except Exception as e:
sys.exit('Failed to patch using "{patch}"\n{err}'.format(patch=patch,err=e))
subprocess.check_call(['/usr/bin/patch', name+'.c', patch])