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
Tthe following usage is not parsed correctly:
Usage: main.jl --files <fnames>... --outputdir <outdir>
I had to flip the order to make it work:
Usage: main.jl --outputdir <outdir> --files <fnames>...
The text was updated successfully, but these errors were encountered:
Actually, it doesn't work. The list of names is flipped during usage:
julia --project main.jl --files foo bar --outputdir baz
creates files = ["bar", "baz"] as opposed to files = ["foo", "bar"].
files = ["bar", "baz"]
files = ["foo", "bar"]
Sorry, something went wrong.
No branches or pull requests
Tthe following usage is not parsed correctly:
I had to flip the order to make it work:
The text was updated successfully, but these errors were encountered: