Remove unnecessary semicolon
All checks were successful
/ build (17, ubuntu-latest) (push) Successful in 4m15s
/ deploy (17, ubuntu-latest) (push) Has been skipped
/ build (17, ubuntu-latest) (pull_request) Successful in 4m11s
/ deploy (17, ubuntu-latest) (pull_request) Has been skipped

This commit is contained in:
Quentin Legot 2023-07-20 19:17:58 +02:00
parent 362de5e40d
commit 3ad8323085

View File

@ -102,11 +102,11 @@ dependencies {
}
static def getEnv(String envName, String defaultValue) {
String r = System.getenv(envName);
String r = System.getenv(envName)
if(r != null) {
return r;
return r
} else {
return defaultValue;
return defaultValue
}
}