Skip to content

Commit a5ffcad

Browse files
authored
Fix typo in step output name (#751)
1 parent ce0ff72 commit a5ffcad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mcp/java/net/minecraftforge/gradle/mcp/function/DownloadCoreFunction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class DownloadCoreFunction extends DownloadFileFunction {
3636
private static DownloadInfo getDownloadInfo(MCPEnvironment environment, String artifact, String extension) {
3737
try {
3838
Gson gson = new Gson();
39-
Reader reader = new FileReader(environment.getStepOutput("downloadManifest"));
39+
Reader reader = new FileReader(environment.getStepOutput("downloadJson"));
4040
JsonObject json = gson.fromJson(reader, JsonObject.class);
4141
reader.close();
4242

0 commit comments

Comments
 (0)