Skip to content

Commit 594bcce

Browse files
committed
Fix publishing
1 parent 2aafdce commit 594bcce

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
@@ -176,9 +176,9 @@ publishing {
176176
if (project.hasProperty('mavendir')) {
177177
maven { url mavendir }
178178
}
179-
179+
180180
def mavenToken = System.getenv("MAVEN_TOKEN")
181-
if (mavenToken != null && mavenToken.isNotEmpty()) {
181+
if (mavenToken != null && !mavenToken.isEmpty()) {
182182
maven {
183183
url = "https://maven.ithundxr.dev/mirror"
184184
credentials {

0 commit comments

Comments
 (0)