Skip to content

Commit 67a59dc

Browse files
committed
Fix signing property check in build script
Corrects the property name from 'signing.signingInMemoryKey' to 'signingInMemoryKey' in the signing condition to ensure proper detection of signing configuration.
1 parent f36e5b2 commit 67a59dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/preprocessor/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ mavenPublishing{
5050
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
5151

5252
// Only sign if signing is set up
53-
if(project.hasProperty("signing.keyId") || project.hasProperty("signing.signingInMemoryKey"))
53+
if(project.hasProperty("signing.keyId") || project.hasProperty("signingInMemoryKey"))
5454
signAllPublications()
5555

5656
pom{

0 commit comments

Comments
 (0)