Use realpath() when reporting kitty_exe

This commit is contained in:
Kovid Goyal 2021-10-17 06:30:26 +05:30
parent f302c2ae39
commit 90dfabc644
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -229,7 +229,7 @@ def debug_config(opts: KittyOpts) -> str:
p('Running under:' + green('Wayland' if is_wayland() else 'X11'))
p(green('Frozen:'), 'True' if getattr(sys, 'frozen', False) else 'False')
p(green('Paths:'))
p(yellow(' kitty:'), kitty_exe())
p(yellow(' kitty:'), os.path.realpath(kitty_exe()))
p(yellow(' base dir:'), kitty_base_dir)
p(yellow(' extensions dir:'), extensions_dir)
p(yellow(' system shell:'), shell_path)