Reveal services secrets #313 #317

This commit is contained in:
Koitharu
2023-03-05 07:30:47 +02:00
parent 866f9272ef
commit 5cfad9ab8a
7 changed files with 46 additions and 37 deletions

View File

@@ -20,15 +20,6 @@ allprojects {
}
}
String localProperty(String name, String defaultValue = 'null') {
Properties localProperties = new Properties()
project.rootProject.file('local.properties').withInputStream { localProperties.load(it) }
def value = localProperties[name]
return value != null ? value : defaultValue
}
String currentBranch() {
def branchName = ""
try {