<#12682 `.` directories identified as file targets...
# github-notifications
q
#12682 `.` directories identified as file targets when BUILD target expected Issue created by njgrisafi Describe the bug When adding a BUILD file to a directory with a
.
in the name and mapping that target as a dependency of another target results in a
ResolveError
error. Some example BUILD files:
app/some.path.com/BUILD
Copy code
resources(
    sources=[
        "*.json",
    ]
)
app/BUILD
Copy code
python_library(
    dependencies=[
        "./some.path.com"
    ]
)
Pants version
2.6.1rc1
OS MacOS Additional infoExample gist for errorExample repo setup • run
./pants dependees app/some.path.com
to see the error • update the target to use the
_
directory, it works as expected. pantsbuild/pants