Open
Description
Hello,
I recently upgraded from spring-shell 2.7.5 to 3.2.0, and found that arguments of the form "arg=value" are no longer accepted.
Is this a regression, or was it intended?
Sample code:
@ShellMethod(
value = "Description",
key = {"test"})
public void test(
@ShellOption(
value = {"--foo", "-f"},
defaultValue = ShellOption.NULL) String foo) {
System.out.println("Foo is: " + foo);
}
shell:> test --foo=bar
Expected:
Foo is: bar
Actual:
Unrecognised option '--foo=bar'