build.gradle: use == instead of equals

This commit is contained in:
Dominik Schürmann 2020-07-01 23:12:12 +02:00
parent f6b3c4bbe2
commit 22c98036c1
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@ def getVersionName = { ->
return stdout.toString().trim()
}
def isCi = "true".equals(System.getenv("CI"))
def preDexEnabled = "true".equals(System.getProperty("pre-dex", "true"))
def isCi = "true" == System.getenv("CI")
def preDexEnabled = "true" == System.getProperty("pre-dex", "true")
def fullApplicationId = "org.fdroid.fdroid"
def basicApplicationId = "org.fdroid.basic"