fonts: Make patching silent

The generate script should only output anything if there are errors.
This commit is contained in:
Finlay Davidson 2023-04-05 10:48:32 +02:00 committed by JF
parent d472a71078
commit e4a6f6ad77

View File

@ -67,7 +67,7 @@ def main():
subprocess.check_call(line)
if patches:
for patch in patches:
subprocess.check_call(['/usr/bin/env', 'patch', name+'.c', patch])
subprocess.check_call(['/usr/bin/env', 'patch', '--silent', name+'.c', patch])