blob: ee489b0dce343a30a494d1fe8201c5cdd69b08ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- a/kitty/constants.py
+++ b/kitty/constants.py
@@ -64,7 +64,7 @@
def kitty_exe() -> str:
rpath = sys._xoptions.get('bundle_exe_dir')
if not rpath:
- items = os.environ.get('PATH', '').split(os.pathsep) + [os.path.join(base, 'launcher')]
+ items = os.environ.get('PATH', '').split(os.pathsep) + [os.path.join(base, '../linux-package/bin')]
seen: Set[str] = set()
for candidate in filter(None, items):
if candidate not in seen:
|