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
.
I received a report of a pretty extreme edge case: a bad cljalias combination would result in a classpath with both . and src in it.
clj
src
It is contradictory becase one is a subset of the other, so clojure namespaces won't have a well-defined place where they should reside.
This results in namespace-filename-mismatches, which are confusing for end users.
namespace-filename-mismatch
If . and a dir that is a subset of . are both part of the classpath, fail fast and informatively.
The text was updated successfully, but these errors were encountered:
Fail when inferred source paths overlap with each other
1180a44
Fixes #428
e7c2ba2
No branches or pull requests
Context
I received a report of a pretty extreme edge case: a bad
clj
alias combination would result in a classpath with both.
andsrc
in it.It is contradictory becase one is a subset of the other, so clojure namespaces won't have a well-defined place where they should reside.
This results in
namespace-filename-mismatch
es, which are confusing for end users.Task
If
.
and a dir that is a subset of.
are both part of the classpath, fail fast and informatively.The text was updated successfully, but these errors were encountered: