mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-04 06:36:24 +00:00
Dont use SystemExit if kitty exe not found
This commit is contained in:
parent
40dee44978
commit
d1b2f9c6a9
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ def kitty_exe() -> str:
|
|||
rpath = candidate
|
||||
break
|
||||
else:
|
||||
raise SystemExit('kitty binary not found')
|
||||
raise RuntimeError('kitty binary not found')
|
||||
return os.path.join(rpath, 'kitty')
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue