mirror of
https://github.com/kovidgoyal/kitty.git
synced 2024-11-13 12:09:35 +03:00
Fix #3989
This commit is contained in:
parent
7997295d4c
commit
6db46850eb
5
setup.py
5
setup.py
@ -1100,7 +1100,10 @@ def package(args: Options, bundle_type: str) -> None:
|
||||
shutil.copy2('logo/kitty.png', os.path.join(libdir, 'logo'))
|
||||
shutil.copy2('logo/beam-cursor.png', os.path.join(libdir, 'logo'))
|
||||
shutil.copy2('logo/beam-cursor@2x.png', os.path.join(libdir, 'logo'))
|
||||
shutil.copytree('shell-integration', os.path.join(libdir, 'shell-integration'), dirs_exist_ok=True)
|
||||
try:
|
||||
shutil.copytree('shell-integration', os.path.join(libdir, 'shell-integration'), dirs_exist_ok=True)
|
||||
except TypeError: # python < 3.8
|
||||
shutil.copytree('shell-integration', os.path.join(libdir, 'shell-integration'))
|
||||
allowed_extensions = frozenset('py glsl so'.split())
|
||||
|
||||
def src_ignore(parent: str, entries: Iterable[str]) -> List[str]:
|
||||
|
Loading…
Reference in New Issue
Block a user