use underscores

This commit is contained in:
ThatGamerBlue
2020-05-02 13:38:11 +01:00
committed by GitHub
parent 440eafd926
commit 4f7aa2fa20

View File

@@ -135,12 +135,12 @@ subprojects {
maven { maven {
url = uri("$buildDir/repo") url = uri("$buildDir/repo")
} }
if (System.getenv("REPO-URL") != null) { if (System.getenv("REPO_URL") != null) {
maven { maven {
url = uri(System.getenv("REPO-URL")) url = uri(System.getenv("REPO_URL"))
credentials { credentials {
username = System.getenv("REPO-USERNAME") username = System.getenv("REPO_USERNAME")
password = System.getenv("REPO-PASSWORD") password = System.getenv("REPO_PASSWORD")
} }
} }
} }