1
0
mirror of https://github.com/Anuken/Mindustry.git synced 2024-10-26 09:13:28 +03:00

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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 ->