From 4f7aa2fa20b613bd464444ce256f24b4049f1fc4 Mon Sep 17 00:00:00 2001 From: ThatGamerBlue Date: Sat, 2 May 2020 13:38:11 +0100 Subject: [PATCH] use underscores --- build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 57e4c3b832..6d7cf12bee 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -135,12 +135,12 @@ subprojects { maven { url = uri("$buildDir/repo") } - if (System.getenv("REPO-URL") != null) { + if (System.getenv("REPO_URL") != null) { maven { - url = uri(System.getenv("REPO-URL")) + url = uri(System.getenv("REPO_URL")) credentials { - username = System.getenv("REPO-USERNAME") - password = System.getenv("REPO-PASSWORD") + username = System.getenv("REPO_USERNAME") + password = System.getenv("REPO_PASSWORD") } } }