diff options
author | Ian Carroll <him@ian.sh> | 2014-04-28 19:36:28 -0400 |
---|---|---|
committer | Ian Carroll <him@ian.sh> | 2014-04-28 19:36:28 -0400 |
commit | 68aa01e51fb9673ff2739825529a3fee36df79b4 (patch) | |
tree | 0b901c04770f723c87d0fd6eaedfc043d16dd1a6 /contrib | |
parent | c63b2e25a59c602de182a376313ad5d3d62d5045 (diff) |
Fixes error
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 5c310df1fc..b0d85171da 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 time import sleep from argparse import ArgumentParser @@ -814,6 +814,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) |