...
This commit is contained in:
parent
c826965833
commit
d0bf21ab16
1 changed files with 2 additions and 0 deletions
2
setup.py
2
setup.py
|
|
@ -708,6 +708,7 @@ def create_linux_bundle_gunk(ddir, libdir_name):
|
|||
launcher = 'bin/kitty'
|
||||
if os.path.exists(in_src_launcher):
|
||||
os.remove(in_src_launcher)
|
||||
os.makedirs(os.path.dirname(in_src_launcher), exist_ok=True)
|
||||
os.symlink(os.path.relpath(launcher, os.path.dirname(in_src_launcher)), in_src_launcher)
|
||||
|
||||
|
||||
|
|
@ -772,6 +773,7 @@ def create_macos_bundle_gunk(ddir):
|
|||
in_src_launcher = 'Frameworks/kitty/kitty/launcher/kitty'
|
||||
if os.path.exists(in_src_launcher):
|
||||
os.remove(in_src_launcher)
|
||||
os.makedirs(os.path.dirname(in_src_launcher), exist_ok=True)
|
||||
os.symlink(os.path.relpath(launcher, os.path.dirname(in_src_launcher)), in_src_launcher)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue