From c62995df19c9921120fb1b3b5b63a5b9aab46e3f Mon Sep 17 00:00:00 2001 From: PseudoResonance Date: Sun, 5 Jan 2020 20:35:39 -0800 Subject: [PATCH] Fix typo --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 92f1af1..4080f2c 100644 --- a/build.gradle +++ b/build.gradle @@ -75,8 +75,8 @@ publishing { def snapshotsRepoUrl = "http://192.168.0.20:8081/repository/maven-snapshots/" url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl credentials { - username = project.hasProperty('nexus_username') ? nexus_username : (System.getenv('NEXUS_USERNAME') != null ? System..getenv('NEXUS_USERNAME') : '') - password = project.hasProperty('nexus_password') ? nexus_password : (System.getenv('NEXUS_PASSWORD') != null ? System..getenv('NEXUS_PASSWORD') : '') + username = project.hasProperty('nexus_username') ? nexus_username : (System.getenv('NEXUS_USERNAME') != null ? System.getenv('NEXUS_USERNAME') : '') + password = project.hasProperty('nexus_password') ? nexus_password : (System.getenv('NEXUS_PASSWORD') != null ? System.getenv('NEXUS_PASSWORD') : '') } } }