scala-cli
scala-cli copied to clipboard
Accept wildcards in --extra-jars
Is your feature request related to a problem? Please describe.
java -cp accepts * characters in the class path, that it expands to all JARs in the directory. (See java command line documentation here for example).
Describe the solution you'd like
It'd be nice if scala-cli accepted such wildcards too, in --extra-jars.
Describe alternatives you've considered
Without support for this, users handled a class path value containing such wildcards have to expand these on their own, before passing them to scala-cli, which is cumbersome.