mirror of https://github.com/kivy/kivy.git
osx/packaging: add label backrgound + correctly name the final file. refs #854
This commit is contained in:
parent
4454d4bc7d
commit
a637a2b999
|
@ -241,6 +241,9 @@ class OSXPortableBuild(Command):
|
||||||
set position of item ".DS_Store" of container window to {900, 900}
|
set position of item ".DS_Store" of container window to {900, 900}
|
||||||
set position of item ".fseventsd" of container window to {900, 900}
|
set position of item ".fseventsd" of container window to {900, 900}
|
||||||
set position of item ".Trashes" of container window to {900, 900}
|
set position of item ".Trashes" of container window to {900, 900}
|
||||||
|
set the label index of item "examples" to 7
|
||||||
|
set the label index of item "Readme.txt" to 7
|
||||||
|
set the label index of item "make-symlinks" to 7
|
||||||
close
|
close
|
||||||
open
|
open
|
||||||
update without registering applications
|
update without registering applications
|
||||||
|
@ -261,7 +264,7 @@ class OSXPortableBuild(Command):
|
||||||
stdout=PIPE).communicate()
|
stdout=PIPE).communicate()
|
||||||
|
|
||||||
print "*compressing and finalizing disk image"
|
print "*compressing and finalizing disk image"
|
||||||
fn = os.path.join(self.dist_dir, vol_name + ".dmg")
|
fn = os.path.join(self.dist_dir, self.dist_name + "-osx.dmg")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
os.remove(fn)
|
os.remove(fn)
|
||||||
|
|
Loading…
Reference in New Issue