Skip to content

Commit ee22e10

Browse files
committed
Add default "false" for getProperty
1 parent 1a256d5 commit ee22e10

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ val enableEts = run {
3939
if (providers.gradleProperty("enableEts").isPresent) {
4040
providers.gradleProperty("enableEts").get().isTrue()
4141
} else {
42-
localProperties.getProperty("enableEts").isTrue()
42+
localProperties.getProperty("enableEts", "false").isTrue()
4343
}
4444
}
4545
if (enableEts) {

0 commit comments

Comments
 (0)