subpar icon indicating copy to clipboard operation
subpar copied to clipboard

Incompatible search for main files

Open nicmcd opened this issue 6 years ago • 0 comments

Here is my py_binary rule:

py_binary(
    name = "testing",
    srcs = ["bin/testing.py"],
)

The py_binary rule finds the main file just fine even though it is in the bin directory. However, the following rule fails:

par_binary(
    name = "testing",
    srcs = ["bin/testing.py"],
)

I'm using Bazel version 0.26.1 and subpar 2.0.0

nicmcd avatar Jun 21 '19 06:06 nicmcd