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 opam admin add-constraint on an opam file containing the following:
opam admin add-constraint
depends: [ ("ocaml" {< "4.04.1" & with-test} | "sexplib0" {with-test}) ]
the resulting diff will show a unique difference (nothing else was changed):
- ("ocaml" {< "4.04.1" & with-test} | "sexplib0" {with-test}) + ("ocaml" {with-test & < "4.04.1"} | "sexplib0" {with-test})
This shouldn't happen and the command should preserve the order of the filters.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using
opam admin add-constraint
on an opam file containing the following:the resulting diff will show a unique difference (nothing else was changed):
This shouldn't happen and the command should preserve the order of the filters.
The text was updated successfully, but these errors were encountered: