You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2020/07/18 00:25:14 UTC

[logging-log4j-scala] branch master updated: Use correct environment variable

This is an automated email from the ASF dual-hosted git repository.

mattsicker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j-scala.git


The following commit(s) were added to refs/heads/master by this push:
     new 6ab30f0  Use correct environment variable
6ab30f0 is described below

commit 6ab30f0f5ff8c567d6c9b3f261ebc7d708cb29d1
Author: Matt Sicker <bo...@gmail.com>
AuthorDate: Fri Jul 17 19:24:59 2020 -0500

    Use correct environment variable
---
 build.sbt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.sbt b/build.sbt
index 685828e..c51f0ab 100644
--- a/build.sbt
+++ b/build.sbt
@@ -67,7 +67,7 @@ lazy val publishSettings = Seq(
   credentials ++= {
     for {
       username <- sys.env.get("NEXUS_USR")
-      password <- sys.env.get("NEXUS_PWD")
+      password <- sys.env.get("NEXUS_PSW")
     } yield Credentials("Sonatype Nexus Repository Manager", "repository.apache.org", username, password)
   }.toList,
   // FIXME: https://github.com/sbt/sbt/issues/3519