Disable the testmod by default
This commit is contained in:
parent
40b9ac6002
commit
e6bb67cb05
|
|
@ -23,9 +23,11 @@ def current_platforms = getProperty("enabled_platforms").tokenize(',')
|
||||||
current_platforms.each { it ->
|
current_platforms.each { it ->
|
||||||
def platform_name = it.trim()
|
def platform_name = it.trim()
|
||||||
include(platform_name)
|
include(platform_name)
|
||||||
def testmodFolder = new File(platform_name + "/" + "testmod")
|
if(hasProperty("modernfix.testmod.enable")) {
|
||||||
if(testmodFolder.isDirectory()) {
|
def testmodFolder = new File(platform_name + "/" + "testmod")
|
||||||
include(platform_name + ":testmod")
|
if (testmodFolder.isDirectory()) {
|
||||||
|
include(platform_name + ":testmod")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user