Skip to content

Commit 0153137

Browse files
fix gradle issue
replace .contains with .hasTask
1 parent e9084ff commit 0153137

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ subprojects { project ->
188188

189189
signing {
190190
sign configurations.archives
191-
required { !isBuildSnapshot && gradle.taskGraph.contains(uploadPublished) }
191+
required { !isBuildSnapshot && gradle.taskGraph.hasTask(uploadPublished) }
192192
}
193193

194194
uploadPublished {

0 commit comments

Comments
 (0)