Testing arc hash script 3

This commit is contained in:
Anuken
2019-09-13 13:05:10 -04:00
parent dd93284062
commit d8d9762998
2 changed files with 3 additions and 3 deletions

View File

@@ -34,11 +34,11 @@ allprojects{
}
localArc = {
return (!project.hasProperty("release")) && new File(projectDir.parent, '../Arc').exists()
return !project.hasProperty("release") && new File(projectDir.parent, '../Arc').exists()
}
getArcHash = {
return new Properties().with{ p -> p.load(new File(projectDir, 'gradle.properties'))}["archash"]
return new Properties().with{ p -> p.load(new File(projectDir, 'gradle.properties')) }["archash"]
}
arcModule = { String name ->