Skip to content

Commit

Permalink
Force use HFS+ filesystem for DMG images
Browse files Browse the repository at this point in the history
  • Loading branch information
AlienCowEatCake committed Jan 12, 2019
1 parent 5d103dc commit a8d6030
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion buildscripts/osx_qt4.8_clang64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ mv "${OUT_PATH}/${APPNAME}.app" "${INSTALL_PATH}/"
cd "${INSTALL_PATH}"
ln -s /Applications ./Applications
cd "${BUILD_PATH}"
hdiutil create -format UDBZ -srcfolder "${INSTALL_PATH}" -volname "${APPNAME}" "${ARTIFACTS_PATH}/${DMGNAME}.dmg"
hdiutil create -format UDBZ -fs HFS+ -srcfolder "${INSTALL_PATH}" -volname "${APPNAME}" "${ARTIFACTS_PATH}/${DMGNAME}.dmg"

2 changes: 1 addition & 1 deletion buildscripts/osx_qt5.6_clang64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ cd "${INSTALL_PATH}"
ln -s /Applications ./Applications
find "${APPNAME}.app/Contents/PlugIns" -name "*_debug.dylib" -delete
cd "${BUILD_PATH}"
hdiutil create -format UDBZ -srcfolder "${INSTALL_PATH}" -volname "${APPNAME}" "${ARTIFACTS_PATH}/${DMGNAME}.dmg"
hdiutil create -format UDBZ -fs HFS+ -srcfolder "${INSTALL_PATH}" -volname "${APPNAME}" "${ARTIFACTS_PATH}/${DMGNAME}.dmg"

2 changes: 1 addition & 1 deletion buildscripts/osx_qt5.6_clang64_libstdcxx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ cd "${INSTALL_PATH}"
ln -s /Applications ./Applications
find "${APPNAME}.app/Contents/PlugIns" -name "*_debug.dylib" -delete
cd "${BUILD_PATH}"
hdiutil create -format UDBZ -srcfolder "${INSTALL_PATH}" -volname "${APPNAME}" "${ARTIFACTS_PATH}/${DMGNAME}.dmg"
hdiutil create -format UDBZ -fs HFS+ -srcfolder "${INSTALL_PATH}" -volname "${APPNAME}" "${ARTIFACTS_PATH}/${DMGNAME}.dmg"

0 comments on commit a8d6030

Please sign in to comment.