Skip to content

Commit

Permalink
Notarization for macOS media file
Browse files Browse the repository at this point in the history
  • Loading branch information
ingokegel committed Sep 24, 2019
1 parent c21d10e commit d55365d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/installer/installer.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ val winCertPath: String? by project
val macCertPath: String? by project
val winKeystorePassword: String? by project
val macKeystorePassword: String? by project
val appleId: String? by project
val appleIdPassword: String? by project

install4j {
install4jHomeDir?.let {
Expand All @@ -31,6 +33,8 @@ tasks {
disableSigning = !project.hasProperty("winCertPath") || !project.hasProperty("macCertPath")
winKeystorePassword = this@Installer_gradle.winKeystorePassword ?: ""
macKeystorePassword = this@Installer_gradle.macKeystorePassword ?: ""
appleId = this@Installer_gradle.appleId ?: ""
appleIdPassword = this@Installer_gradle.appleIdPassword ?: ""

variables = mapOf(
"winCertPath" to (winCertPath ?: ""),
Expand Down

0 comments on commit d55365d

Please sign in to comment.