We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using caseapp 1.2.0, if you have:
import caseapp._ case class ExampleOptions( foo: String, bar: Int ) object Example extends CaseApp[ExampleOptions] { def run(options: ExampleOptions, arg: RemainingArgs): Unit = { println(options) println(arg) } }
If you run without arguments, you see:
$ sbt -error run [error] Required option --foo not specified
Which is correct, but it'd be awesome if both --foo and --bar were reported missing.
--foo
--bar
The text was updated successfully, but these errors were encountered:
I've got a fix for this; will push it once I do some cleanup!
Sorry, something went wrong.
No branches or pull requests
Using caseapp 1.2.0, if you have:
If you run without arguments, you see:
Which is correct, but it'd be awesome if both
--foo
and--bar
were reported missing.The text was updated successfully, but these errors were encountered: