Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
internal/abi: add a dummy Go file for go mod vendor
Before this change, the package `internal/abi` was ignored by `go mod vendor` as there was no Go file there. Then building purego failed as `internal/abi` didn't exist under the `vendor` directory. This change fixes this issue by adding a dummy Go file to `internal/abi` and adding an explicit import to it, but with a `dummy` build tag. I referred a change goccy/go-graphviz#37 for this hack. Updates #31
- Loading branch information