Also ensure kitty-tool bootstrap is executable
This commit is contained in:
parent
ef71b071db
commit
441e4edfb2
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -1425,7 +1425,7 @@ def should_be_executable(path: str) -> bool:
|
|||
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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue