Skip to content

Commit e7869c4

Browse files
authored
why?
1 parent 3745438 commit e7869c4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ androidComponents {
5151
it.outputs.forEach { output ->
5252
val currentType = it.buildType
5353
val currentSuffix = gropify.github.ci.commit.id.let { suffix ->
54-
if (suffix.isNotBlank()) "-$suffix" else ""
54+
if (!suffix.isBlank()) "-$suffix" else ""
5555
}
5656
val currentVersion = "${output.versionName.get()}$currentSuffix(${output.versionCode.get()})"
5757
if (output is com.android.build.api.variant.impl.VariantOutputImpl)
@@ -78,4 +78,4 @@ dependencies {
7878
testImplementation(libs.junit)
7979
androidTestImplementation(libs.androidx.test.ext.junit)
8080
androidTestImplementation(libs.androidx.test.espresso.core)
81-
}
81+
}

0 commit comments

Comments
 (0)