diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-07-30 11:45:34 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-07-30 11:45:41 +0200 |
| commit | 1de2992e0786f4de0f0cae10eb27a3b69ec6e3de (patch) | |
| tree | 87a4767a8cca7e861a8db69a307f15bed8f1edf8 /contrib | |
| parent | Merge pull request #4593 (diff) | |
| parent | Fixes error (diff) | |
| download | discoin-1de2992e0786f4de0f0cae10eb27a3b69ec6e3de.tar.xz discoin-1de2992e0786f4de0f0cae10eb27a3b69ec6e3de.zip | |
Merge pull request #4104
68aa01e Fixes error (Ian Carroll)
Diffstat (limited to 'contrib')
| -rwxr-xr-x | contrib/macdeploy/macdeployqtplus | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/macdeploy/macdeployqtplus b/contrib/macdeploy/macdeployqtplus index fdad28018..eece81dd3 100755 --- a/contrib/macdeploy/macdeployqtplus +++ b/contrib/macdeploy/macdeployqtplus @@ -17,7 +17,7 @@ # 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 argparse import ArgumentParser @@ -804,6 +804,7 @@ if config.dmg is not None: if verbose >= 2: print "+ Finalizing .dmg disk image +" + time.sleep(5) try: runHDIUtil("convert", dmg_name + ".temp", format="UDBZ", o=dmg_name + ".dmg", ov=True) |