Skip to content

Commit

Permalink
Expose rename step output as a result (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
Su5eD authored Jul 7, 2024
1 parent 6cddf85 commit 0dbead6
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,13 +157,16 @@ public void loadNeoFormProcess(NeoFormDistConfig distConfig) {
addNodeForStep(graph, distConfig, step);
}

var renameOutput = graph.getRequiredOutput("rename", "output");

var sourcesOutput = graph.getRequiredOutput("patch", "output");

var compiledOutput = addRecompileStep(distConfig, sourcesOutput);

var sourcesAndCompiledOutput = addMergeWithSourcesStep(compiledOutput, sourcesOutput);

// Register the sources and the compiled binary as results
graph.setResult("vanillaDeobfuscated", renameOutput);
graph.setResult("sources", sourcesOutput);
graph.setResult("compiled", compiledOutput);
graph.setResult("sourcesAndCompiled", sourcesAndCompiledOutput);
Expand Down

0 comments on commit 0dbead6

Please sign in to comment.