Skip to content

Commit

Permalink
Builder|Mac OS X: Sign the applications with a Developer ID
Browse files Browse the repository at this point in the history
Apps need to be signed for Mountain Lion or otherwise the user has to
jump through some hoops to run them.
  • Loading branch information
skyjake committed Jul 12, 2012
1 parent 515b50c commit 7154658
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions distrib/platform_release.py
Expand Up @@ -224,6 +224,12 @@ def mac_release():
if not 'jDoom64' in f:
duptree(f, 'Doomsday Engine.app/Contents/' + os.path.basename(f))

print 'Signing Doomsday.app...'
os.system('codesign --verbose -s "Developer ID Application: Jaakko Keranen" "Doomsday Engine.app/Contents/Doomsday.app"')

print 'Signing Doomsday Engine.app...'
os.system('codesign --verbose -s "Developer ID Application: Jaakko Keranen" "Doomsday Engine.app"')

print 'Creating disk image:', target

masterDmg = target
Expand Down

0 comments on commit 7154658

Please sign in to comment.