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
This code example
# lib/my_escript_cli.ex defmodule MyEscriptCLI do use ExCLI, escript: true end
is probably wrong, and should be
# lib/my_escript_cli.ex defmodule MyEscriptCLI do use ExCLI.DSL, escript: true end
instead
The text was updated successfully, but these errors were encountered:
This probably also explains my confusion as per #11 :)
Sorry, something went wrong.
Good catch, thanks!
e792d7c
No branches or pull requests
This code example
is probably wrong, and should be
instead
The text was updated successfully, but these errors were encountered: