Skip to content

Commit b579132

Browse files
committed
localEnv does only work on a Docker environment
1 parent 992a147 commit b579132

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ version = '1.2.8'
2626
description = 'A Java library to access KeePassXC via its build-in proxy.'
2727
java.sourceCompatibility = JavaVersion.VERSION_17
2828

29-
def sonatypeUsername = localEnv.getProperty("SONATYPE_USERNAME") ?: System.getenv("SONATYPE_USERNAME")
30-
def sonatypePassword = localEnv.getProperty("SONATYPE_PASSWORD") ?: System.getenv("SONATYPE_PASSWORD")
29+
def sonatypeUsername = System.getenv("SONATYPE_USERNAME")
30+
def sonatypePassword = System.getenv("SONATYPE_PASSWORD")
3131

3232
java {
3333
withSourcesJar()

0 commit comments

Comments
 (0)