mirror of
https://github.com/debauchee/barrier.git
synced 2025-07-22 19:07:34 +02:00
Used move instead of copytree since copy loses symlinks
This commit is contained in:
parent
d347cbd45f
commit
060d8da671
1 changed files with 1 additions and 1 deletions
|
@ -1314,7 +1314,7 @@ class InternalCommands:
|
||||||
shutil.rmtree(dist)
|
shutil.rmtree(dist)
|
||||||
|
|
||||||
os.makedirs(dist)
|
os.makedirs(dist)
|
||||||
shutil.copytree(dir + "/" + name + ".app", dist + "/" + name + ".app")
|
shutil.move(dir + "/" + name + ".app", dist + "/" + name + ".app")
|
||||||
|
|
||||||
self.try_chdir(dist)
|
self.try_chdir(dist)
|
||||||
err = os.system("ln -s /Applications")
|
err = os.system("ln -s /Applications")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue