mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-31 01:44:22 +07:00
Gradle opt -PnoLocalArc to force no localArc (#8552)
renaming Arc is annoying, also vscode doesnt like it
This commit is contained in:
parent
c1d3cdc5cb
commit
6c7d506e42
@ -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 ->
|
||||
|
Loading…
Reference in New Issue
Block a user