build.gradle: use == instead of equals
This commit is contained in:
parent
f6b3c4bbe2
commit
22c98036c1
@ -12,8 +12,8 @@ def getVersionName = { ->
|
|||||||
return stdout.toString().trim()
|
return stdout.toString().trim()
|
||||||
}
|
}
|
||||||
|
|
||||||
def isCi = "true".equals(System.getenv("CI"))
|
def isCi = "true" == System.getenv("CI")
|
||||||
def preDexEnabled = "true".equals(System.getProperty("pre-dex", "true"))
|
def preDexEnabled = "true" == System.getProperty("pre-dex", "true")
|
||||||
|
|
||||||
def fullApplicationId = "org.fdroid.fdroid"
|
def fullApplicationId = "org.fdroid.fdroid"
|
||||||
def basicApplicationId = "org.fdroid.basic"
|
def basicApplicationId = "org.fdroid.basic"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user