Browse Source

Merge pull request #4104

68aa01e Fixes error (Ian Carroll)
0.10
Wladimir J. van der Laan 10 years ago
parent
commit
1de2992e07
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 3
      contrib/macdeploy/macdeployqtplus

3
contrib/macdeploy/macdeployqtplus

@ -17,7 +17,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
import subprocess, sys, re, os, shutil, stat, os.path import subprocess, sys, re, os, shutil, stat, os.path, time
from string import Template from string import Template
from argparse import ArgumentParser from argparse import ArgumentParser
@ -804,6 +804,7 @@ if config.dmg is not None:
if verbose >= 2: if verbose >= 2:
print "+ Finalizing .dmg disk image +" print "+ Finalizing .dmg disk image +"
time.sleep(5)
try: try:
runHDIUtil("convert", dmg_name + ".temp", format="UDBZ", o=dmg_name + ".dmg", ov=True) runHDIUtil("convert", dmg_name + ".temp", format="UDBZ", o=dmg_name + ".dmg", ov=True)

Loading…
Cancel
Save