Gradle opt -PnoLocalArc to force no localArc (#8552)

renaming Arc is annoying, also vscode doesnt like it
This commit is contained in:
BalaM314
2023-05-07 07:03:45 +05:30
committed by GitHub
parent c1d3cdc5cb
commit 6c7d506e42

View File

@ -49,7 +49,7 @@ allprojects{
}
localArc = {
return !project.hasProperty("release") && new File(projectDir.parent, '../Arc').exists()
return !project.hasProperty("release") && !project.hasProperty("noLocalArc") && new File(projectDir.parent, '../Arc').exists()
}
arcModule = { String name ->