Closed C2L2C closed 5 years ago
@C2L2C I confirm that your changes fixes the issue you address. Also the L60 link you posted appears outdated from master that which has that line at @$(GO) vet -shadow $$(go list ./server/...) || exit 1
Could you maybe create a Pull Request for the changes you made?
moving to use go modules as the upstream
update the build using the ustream. closing
I was having the following issues when trying to build the plugin:
Solved it by using the following version of Makefile: Makefile
Also need to change L60 in the above link:
$(GO) vet -vettool=$(GOPATH)/bin/shadow ./server/...
to$(GO) vet -vettool=${GOPATH}/bin/shadow ./server/...
@scottleedavis Please check this.The above mentioned file was missing the standard writer and was giving the issue:
Replaced the file with the one present at hclog_adapter
This adds the Standard Writer to the config.
Was getting the following issue:
server/plugin.go:371:3: cannot use short (type bool) as type model.SlackCompatibleBool in field value Changed the value for the key short to true (L371) and was finally able to build successfully. @cpanato Please check this.