-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/go: explicitly reject packages whose source files contain leading dots #30270
Comments
Any idea how the spurious file was created in the first place? |
They are a standard part or macos from what I understand. I normally just add |
We should probably reject |
CC @jayconrod |
I wouldn't be surprised if some packages were broken by the removal of dot files. I know at least some repos rely on directories with a dot or underscore prefix for packages that aren't built automatically by Excluding file names with the prefix Should these be rejected with an error or ignored? If the OS is creating them automatically for search indexing, ignoring might be the right option. |
I think we should reject them explicitly, since they likely used to be allowed: better to give an error than to silently compile a package that is missing some of its (possibly-exported) identifiers. |
I think if you only ignore the ._ files you'll avoid the issue with .dir or _dir mentioned above. |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes, tested with:
But at least the latest version shows the
._
filename being processed, and generates 'unexpected NUL in input'What operating system and processor architecture are you using (
go env
)?What did you do?
go build
What did you expect to see?
module to build without errors, which it does after deleting the spurious
._<filename>.go
file.Probably the go command line tools should be ignoring these system files.
What did you see instead?
fails with "cannot find package"
I initially thought this was related to #27238 but I think it is a different problem specific to macos. However it might be worth adding a link from there in case anyone else has this problem.
The text was updated successfully, but these errors were encountered: