mirror of
https://github.com/processing/processing4.git
synced 2026-01-27 18:31:07 +01:00
Fix signing property check in build script (#1266)
Corrects the property name from 'signing.signingInMemoryKey' to 'signingInMemoryKey' in the signing condition to ensure proper detection of signing configuration.
This commit is contained in:
@@ -50,7 +50,7 @@ mavenPublishing{
|
||||
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
|
||||
|
||||
// Only sign if signing is set up
|
||||
if(project.hasProperty("signing.keyId") || project.hasProperty("signing.signingInMemoryKey"))
|
||||
if(project.hasProperty("signing.keyId") || project.hasProperty("signingInMemoryKey"))
|
||||
signAllPublications()
|
||||
|
||||
pom{
|
||||
|
||||
Reference in New Issue
Block a user