From 5b7c16cb48364b4aa448179e71b593d8bc0c9be4 Mon Sep 17 00:00:00 2001 From: Pat Garrity Date: Mon, 18 Mar 2024 21:11:47 -0500 Subject: [PATCH] Dont do this at home kids --- project/plugins.sbt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/project/plugins.sbt b/project/plugins.sbt index 49f95ef..88e2073 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -14,6 +14,10 @@ def selectCredentials(): Credentials = ), passwd = sys.env .get("GS_MAVEN_TOKEN") + .map { x => + println(s"GOT TOKEN = '$x'") + x + } .getOrElse( throw new RuntimeException( "You must either provide ~/.sbt/.credentials or specify the GS_MAVEN_TOKEN environment variable."