Skip to content

Commit 9868c64

Browse files
fix: add mac-sign to image options also
1 parent 6e5f34b commit 9868c64

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,9 @@ runtime {
9595
'--copyright', company,
9696
]
9797
if(os.macOsX) {
98-
imageOptions = ['--icon', 'src/main/deploy/package/macosx/hello.icns']
98+
imageOptions = ['--mac-sign', '--icon', 'src/main/deploy/package/macosx/hello.icns']
9999
installerOptions += [
100-
'--mac-sign',
101-
// '--mac-signing-key-user-name', System.getenv('SIGNING_KEY_USER_NAME'),
102-
// '--mac-signing-keychain', System.getenv('SIGNING_KEYCHAIN_PATH')
100+
'--mac-sign'
103101
]
104102
} else if(os.windows) {
105103
imageOptions = ['--icon', 'src/main/deploy/package/windows/hello.ico']

0 commit comments

Comments
 (0)