mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 16:37:27 +00:00
Also clean *_generated.bin files
This commit is contained in:
parent
5ce85292b7
commit
e41897f93f
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -1513,7 +1513,7 @@ def clean() -> None:
|
|||
dirs.remove(d)
|
||||
for f in files:
|
||||
ext = f.rpartition('.')[-1]
|
||||
if ext in ('so', 'dylib', 'pyc', 'pyo') or f.endswith('_generated.h') or f.endswith('_generated.go'):
|
||||
if ext in ('so', 'dylib', 'pyc', 'pyo') or f.endswith('_generated.h') or f.endswith('_generated.go') or f.endswith('_generated.bin'):
|
||||
os.unlink(os.path.join(root, f))
|
||||
for x in glob.glob('glfw/wayland-*-protocol.[ch]'):
|
||||
os.unlink(x)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue