-
Notifications
You must be signed in to change notification settings - Fork 696
New issue
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
Incorrect error message about globbing #2030
Labels
Comments
Perhaps it would be nice to get #1975 merged. |
4 tasks
quasicomputational
added a commit
to quasicomputational/cabal
that referenced
this issue
Apr 25, 2018
These are inspired by a plan described in a comment in haskell#2522, and only implement a quite limited form of recursive matching: only a single ** wildcard is accepted, it must be the final directory, and, if a ** wildcard is present, the file name must include a wildcard. Or-patterns are not implemented, for simplicity. Closes haskell#3178, haskell#2030.
4 tasks
quasicomputational
added a commit
to quasicomputational/cabal
that referenced
this issue
Apr 25, 2018
These are inspired by a plan described in a comment in haskell#2522, and only implement a quite limited form of recursive matching: only a single ** wildcard is accepted, it must be the final directory, and, if a ** wildcard is present, the file name must include a wildcard. Or-patterns are not implemented, for simplicity. Closes haskell#3178, haskell#2030.
quasicomputational
added a commit
to quasicomputational/cabal
that referenced
this issue
Apr 28, 2018
These are inspired by a plan described in a comment in haskell#2522, and only implement a quite limited form of recursive matching: only a single ** wildcard is accepted, it must be the final directory, and, if a ** wildcard is present, the file name must include a wildcard. Or-patterns are not implemented, for simplicity. Closes haskell#3178, haskell#2030.
quasicomputational
added a commit
to quasicomputational/cabal
that referenced
this issue
Apr 29, 2018
These are inspired by a plan described in a comment in haskell#2522, and only implement a quite limited form of recursive matching: only a single ** wildcard is accepted, it must be the final directory, and, if a ** wildcard is present, the file name must include a wildcard. Or-patterns are not implemented, for simplicity. Closes haskell#3178, haskell#2030.
quasicomputational
added a commit
to quasicomputational/cabal
that referenced
this issue
May 6, 2018
These are inspired by a plan described in a comment in haskell#2522, and only implement a quite limited form of recursive matching: only a single ** wildcard is accepted, it must be the final directory, and, if a ** wildcard is present, the file name must include a wildcard. Or-patterns are not implemented, for simplicity. Closes haskell#3178, haskell#2030.
23Skidoo
pushed a commit
that referenced
this issue
May 8, 2018
These are inspired by a plan described in a comment in #2522, and only implement a quite limited form of recursive matching: only a single ** wildcard is accepted, it must be the final directory, and, if a ** wildcard is present, the file name must include a wildcard. Or-patterns are not implemented, for simplicity. Closes #3178, #2030.
The error message has been improved. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the criterion package, I tried to have a
data-files
section like this:When I try to run
cabal
, I get this error:The actual name of the file I'm trying to include is as follows:
It looks like
cabal
is misidentifying where the "*
" is showing up in the pattern here.The text was updated successfully, but these errors were encountered: