mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-04 14:46:03 +00:00
Use realpath() when reporting kitty_exe
This commit is contained in:
parent
f302c2ae39
commit
90dfabc644
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue