From 441e4edfb237642b560db138e2a99cc270651d4d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 29 Aug 2022 18:25:09 +0530 Subject: [PATCH] Also ensure kitty-tool bootstrap is executable --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 50da924a4..124414ca0 100755 --- a/setup.py +++ b/setup.py @@ -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