Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 679 Bytes

CONTRIBUTING.md

File metadata and controls

22 lines (17 loc) · 679 Bytes

Contributing

Contributing to the coral-importer tool requires a full Go toolchain.

When you modify files, ensure you that before you commit, you run:

go generate ./...

Which may regenerate files based on updates models.

If you see errors related to $PATH such as:

common/coral/commentActions.go:1: running "easyjson": exec: "easyjson": executable file not found in $PATH

you can fix by exporting the following and adding these to your bash profile and confirming that you have the dependency installed:

export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
go install github.com/mailru/easyjson/easyjson@v0.7.7