fix font output targets (#37511)

This commit is contained in:
Adeeb Shihadeh
2026-03-01 10:01:41 -08:00
committed by GitHub
parent c244a5d485
commit 041606de4c
+1 -1
View File
@@ -6,7 +6,7 @@ Import('env', 'arch', 'common')
generator = File("#selfdrive/assets/fonts/process.py")
source_files = Glob("#selfdrive/assets/fonts/*.ttf") + Glob("#selfdrive/assets/fonts/*.otf")
output_files = [
(f.abspath.split('.')[0] + ".fnt", f.abspath.split('.')[0] + ".png")
(f"#{Path(f.path).with_suffix('.fnt')}", f"#{Path(f.path).with_suffix('.png')}")
for f in source_files
if "NotoColor" not in f.name
]