From b8e6d6b058b65a7fe23961bfce6c119ffefcbda5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 5 Jul 2024 12:04:48 +0530 Subject: [PATCH] fonts should not be removed by make clean It is not generated by make --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 297db9a9a..ff317434f 100755 --- a/setup.py +++ b/setup.py @@ -1821,7 +1821,7 @@ def safe_remove(*entries: str) -> None: safe_remove( 'build', 'compile_commands.json', 'link_commands.json', 'linux-package', 'kitty.app', 'asan-launcher', - 'kitty-profile', 'fonts') + 'kitty-profile') # no fonts as that is not generated by build if not for_cross_compile: safe_remove('docs/generated') clean_launcher_dir('kitty/launcher')