Skip to content
Snippets Groups Projects
Commit e5420b59 authored by kohleman's avatar kohleman
Browse files

- fixed bug, which ignored more than one lane as a parameter (command line parsing was wrong)

SVN: 38069
parent 21e8cb05
No related branches found
No related tags found
No related merge requests found
...@@ -123,6 +123,7 @@ public class TrackingClient ...@@ -123,6 +123,7 @@ public class TrackingClient
.hasArg() .hasArg()
.withDescription("remove lanes from tracking list and do not send an email") .withDescription("remove lanes from tracking list and do not send an email")
.create(CL_PARAMETER_REMOVE_LANES); .create(CL_PARAMETER_REMOVE_LANES);
remove.setArgs(Option.UNLIMITED_VALUES);
Option list_spaces = new Option(CL_PARAMETER_LIST_SPACES, "list spaces which are configured for an extra copy"); Option list_spaces = new Option(CL_PARAMETER_LIST_SPACES, "list spaces which are configured for an extra copy");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment