lively-dusk-46231
10/22/2022, 5:42 PMBUILD file
I have an example structure as:
app1
... files in app1
scripts
... some misc helper scripts
BUILD
My BUILD contains:
python_sources(name='source', sources=['app1/**/*.py'])
----
Now, when I do: ./pants list :: It shows:
app1/__init__.py:source
app1/module1/__init__.py:../source
scripts/script1.py <-------------------------- I never mentioned this in my sources. Why is it here ?bitter-ability-32190
10/22/2022, 5:45 PMBUILD files elsewhere or any other definitions in that one?wide-midnight-78598
10/22/2022, 5:50 PMpython_sources()lively-dusk-46231
10/22/2022, 5:52 PMpython_sources() and BUILD from the earlier tailor command
Found it using cat **/BUILD
False alarm