Skip to content

Commit

Permalink
Fix NeoFormGenerator
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebemish committed Oct 17, 2024
1 parent b925ac6 commit 88fb95f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import dev.lukebemish.taskgraphrunner.model.Distribution;
import dev.lukebemish.taskgraphrunner.model.Input;
import dev.lukebemish.taskgraphrunner.model.InputValue;
import dev.lukebemish.taskgraphrunner.model.MappingsSource;
import dev.lukebemish.taskgraphrunner.model.Output;
import dev.lukebemish.taskgraphrunner.model.PathSensitivity;
import dev.lukebemish.taskgraphrunner.model.TaskModel;
Expand Down Expand Up @@ -288,7 +289,7 @@ public static Config convert(Path neoFormConfig, Value selfReference, Options op
jst.interfaceInjection = new Input.ParameterInput(options.injectedInterfacesParameter);
}
if (options.parchmentDataParameter != null) {
jst.parchmentData = new Input.ParameterInput(options.parchmentDataParameter);
jst.parchmentData = new MappingsSource.File(new Input.ParameterInput(options.parchmentDataParameter));
}

config.tasks.add(jst);
Expand Down

0 comments on commit 88fb95f

Please sign in to comment.