build: Create .dmg release package using HFS+ filesystem to be mountable on older macOS versions (closes #619)

This commit is contained in:
Eberhard Graether
2020-04-14 19:31:34 +02:00
parent 7162a4908a
commit d50ebb5de9
+1 -1
View File
@@ -227,7 +227,7 @@ while true; do
echo -e $INFO "create DMG package";
ln -s /Applications $PACKAGE_DIR/Applications;
hdiutil create ${PACKAGE_DIR}_macOS_64bit.dmg -volname ${PACKAGE_DIR} -srcfolder ${PACKAGE_DIR};
hdiutil create -fs HFS+ ${PACKAGE_DIR}_macOS_64bit.dmg -volname ${PACKAGE_DIR} -srcfolder ${PACKAGE_DIR};
rm $PACKAGE_DIR/Applications;
echo -e $SUCCESS "Created DMG package successfully!";