Community
Participate
Working Groups
Build ID: I20070621-1340 Steps To Reproduce: 1. Call WorkflowRunner from the command line using more than one -p (set property value) argument. 2. WorkflowRunner fails to run the workflow, displaying an error message about multiple occurences of -p being unsupported More information: WorkflowRunner uses hasOption instead of hasOptions for -p, meaning that effectively its only possible to hand over a single parameter. To fix this issue, the line final Option paramOption = OptionBuilder.withArgName("key=value").withDescription("external property that is handled as workflow property").hasArg().create(PARAM); has to be replaced by final Option paramOption = OptionBuilder.withArgName("key=value").withDescription("external property that is handled as workflow property").hasArgs().create(PARAM);
Created attachment 87016 [details] Patch Patch for MWE
I have applied this patch to the oAW4.2 branch. Outstanding is applying it also to HEAD, which is MWE now. Moving bug to MWE.
applied Thanks!
Move to verified as per bug 206558.