You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-terms/kitty/files/kitty-0.19.1-tests.patch

12 lines
485 B

--- 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: