mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-03-28 04:07:01 -05:00
Fix getRootProjectPersistentCache() not using the root project, closes #113
This commit is contained in:
@@ -105,7 +105,7 @@ public class LoomGradleExtension {
|
||||
}
|
||||
|
||||
public File getRootProjectPersistentCache() {
|
||||
File projectCache = new File(project.file(".gradle"), "loom-cache");
|
||||
File projectCache = new File(project.getRootProject().file(".gradle"), "loom-cache");
|
||||
if(!projectCache.exists()){
|
||||
projectCache.mkdirs();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user