package .DS_Store on mac dmg #772

Merged
dan merged 2 commits from mactest into trunk 2023-11-16 17:20:40 +00:00
3 changed files with 2 additions and 2 deletions

1
.gitignore vendored
View File

@ -3,7 +3,6 @@
*.log *.log
*.pyc *.pyc
*.swp *.swp
.DS_Store
.atom/ .atom/
.buildlog/ .buildlog/
.history .history

BIN
macos/dmg/.DS_Store vendored Normal file

Binary file not shown.

View File

@ -13,7 +13,8 @@ rm -r macos_dmg
mkdir macos_dmg mkdir macos_dmg
cp -r "build/macos/Build/Products/Release/Cwtch.app" macos_dmg/ cp -r "build/macos/Build/Products/Release/Cwtch.app" macos_dmg/
# prep DMG with pregenerated components from GUI supportred run of create-dmg # prep DMG with pregenerated components from GUI supportred run of create-dmg
cp macos/dmg/.* macos_dmg/ cp macos/dmg/.DS_Store macos_dmg/
cp macos/dmg/.VolumeIcon.icns macos_dmg/
ln -s /Applications macos_dmg/Applications ln -s /Applications macos_dmg/Applications
hdiutil create -fs HFS+ -volname Cwtch -srcfolder macos_dmg Cwtch.dmg hdiutil create -fs HFS+ -volname Cwtch -srcfolder macos_dmg Cwtch.dmg