Skip to content

Commit 1627f8b

Browse files
committed
fix: disable decomp cache
1 parent 3095709 commit 1627f8b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/net/fabricmc/loom/task/GenerateSourcesTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ public GenerateSourcesTask(DecompilerOptions decompilerOptions) {
218218
getMinecraftCompileLibraries().from(getProject().getConfigurations().getByName(Constants.Configurations.MINECRAFT_COMPILE_LIBRARIES));
219219
getDecompileCacheFile().set(getExtension().getFiles().getDecompileCache(CACHE_VERSION));
220220

221-
getUseCache().convention(true);
221+
getUseCache().convention(false); // TODO fix neoforge yarn
222222
getResetCache().convention(getExtension().refreshDeps());
223223

224224
if (!LoomGradleExtension.get(getProject()).disableObfuscation()) {

0 commit comments

Comments
 (0)