Used move instead of copytree since copy loses symlinks
This commit is contained in:
parent
d347cbd45f
commit
060d8da671
|
@ -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…
Reference in New Issue