Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: deployment script #101

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,10 @@ tasks.dokkaGfmMultiModule.configure {
*/
@kotlin.jvm.Throws(IllegalStateException::class)
fun Project.getLocalProperty(key: String, file: String = "local.properties"): String? {
require(file.endsWith(".properties"))
if (file.endsWith(".properties").not()) {
logger.error("$file File must be .properties.")
return null
}
val properties = java.util.Properties()
val localProperties = File(file)
if (localProperties.isFile) {
Expand All @@ -149,12 +152,14 @@ fun Project.getLocalProperty(key: String, file: String = "local.properties"): St
} else {
// Handle CI in GitHub doesn't have `local.properties` file
logger.warn("$file File not found.")
return "null"
return null
}

val value = properties.getProperty(key, "null")

return if (value == "null") null else value
return if (properties.containsKey(key)) {
properties.getProperty(key)
} else {
null
}
}

koverReport {
Expand Down