Also ensure kitty-tool bootstrap is executable

This commit is contained in:
Kovid Goyal 2022-08-29 18:25:09 +05:30
parent ef71b071db
commit 441e4edfb2
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -1425,7 +1425,7 @@ def package(args: Options, bundle_type: str) -> None:
if path.endswith('.so'):
return True
q = path.split(os.sep)[-2:]
if len(q) == 2 and q[0] == 'ssh' and q[1] in ('askpass.py', 'kitty'):
if len(q) == 2 and q[0] == 'ssh' and q[1] in ('askpass.py', 'kitty', 'kitty-tool'):
return True
return False