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
--dependency
Describe the bug cabal init --lib -d base -d vector should create a cabal file containing both of these dependencies.
cabal init --lib -d base -d vector
To Reproduce Steps to reproduce the behavior:
$ cabal init --lib -d base -d vector $ cat test.cabal ... build-depends: vector
but I'd expect:
$ cabal init --lib -d base -d vector $ cat test.cabal ... build-depends: base, vector
System information
cabal 3.6
cabal 3.8
The text was updated successfully, but these errors were encountered:
Looking at the code-base, it seems like all occurrences of Flag [..] don't behave as intended in the option parser. Time to document the parser >.<
Flag [..]
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
cabal init --lib -d base -d vector
should create a cabal file containing both of these dependencies.To Reproduce
Steps to reproduce the behavior:
but I'd expect:
System information
cabal 3.6
,cabal 3.8
and cabal HEADThe text was updated successfully, but these errors were encountered: