Fix signing settings when no Keychain is specified - Fixed (#1152)

Closes #1086
Closes #1020
This commit is contained in:
Mitchell Syer
2021-09-11 13:01:03 -04:00
committed by GitHub
parent 68d2040fce
commit 8371226f66

View File

@@ -44,14 +44,14 @@ internal fun MacOSSigningSettings.validate(
val signIdentity = this.identity.orNull
?: error(ERR_UNKNOWN_SIGN_ID)
val keychainPath = this.keychain.orNull
val keychainFile =
listOf(project.file(keychainPath), project.rootProject.file(keychainPath))
val keychainFile = if (keychainPath != null) {
val keychainFile = listOf(project.file(keychainPath), project.rootProject.file(keychainPath))
.firstOrNull { it.exists() }
if (keychainPath != null) {
check(keychainFile != null && keychainFile.exists()) {
check(keychainFile != null) {
"$ERR_PREFIX could not find the specified keychain: $keychainPath"
}
}
keychainFile
} else null
return ValidatedMacOSSigningSettings(
bundleID = bundleID,