Skip to content

Commit

Permalink
Fix for 'no mountable fileystems': Use Mac OS Extended
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzou-x committed Jan 21, 2018
1 parent fb41831 commit aea9742
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/macdeploy/macdeployqtplus
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ if config.dmg is not None:

if fancy is None:
try:
runHDIUtil("create", dmg_name, srcfolder="dist", format="UDBZ", volname=app_bundle_name, ov=True)
runHDIUtil("create", dmg_name, srcfolder="dist", format="UDBZ", volname=app_bundle_name, ov=True, fs="HFS+")
except subprocess.CalledProcessError as e:
sys.exit(e.returncode)
else:
Expand All @@ -699,7 +699,7 @@ if config.dmg is not None:
if verbose >= 3:
print "Creating temp image for modification..."
try:
runHDIUtil("create", dmg_name + ".temp", srcfolder="dist", format="UDRW", size=size, volname=app_bundle_name, ov=True)
runHDIUtil("create", dmg_name + ".temp", srcfolder="dist", format="UDRW", size=size, volname=app_bundle_name, ov=True, fs="HFS+")
except subprocess.CalledProcessError as e:
sys.exit(e.returncode)

Expand Down

0 comments on commit aea9742

Please sign in to comment.