You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
go mod vendor is not copying all files to the vendor folder. This leaves an incomplete repository, missing many tests, examples and in some cases C include files. My expectation would be a complete copy of the repository because this is not only for building a package but a backup in case the original repository is taken offline.
What version of Go are you using (go version)?
go version go1.11 linux/amd64
Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (go env)?
go mod vendor
is not copying all files to the vendor folder. This leaves an incomplete repository, missing many tests, examples and in some cases C include files. My expectation would be a complete copy of the repository because this is not only for building a package but a backup in case the original repository is taken offline.What version of Go are you using (go version)?
go version go1.11 linux/amd64
Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (go env)?
What did you do?
Execute
go mod vendor
on a project using the new module support.What did you expect to see?
A complete repository backup installed in the vendor folder.
What did you see instead?
Only
*.go
files.The text was updated successfully, but these errors were encountered: