ssh kitten: Add a kitty-tool wrapper script to auto-download and use kitty-tool

Needs testing.
This commit is contained in:
Kovid Goyal
2022-11-15 13:26:48 +05:30
parent 9ddd7d070e
commit 16775c5539
4 changed files with 92 additions and 2 deletions

View File

@@ -70,7 +70,7 @@ class TestBuild(BaseTest):
q = stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH
return mode & q == q
for x in ('kitty', 'askpass.py'):
for x in ('kitty', 'kitty-tool', 'askpass.py'):
x = os.path.join(shell_integration_dir, 'ssh', x)
self.assertTrue(is_executable(x), f'{x} is not executable')
if getattr(sys, 'frozen', False):