We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I updated the proto-swagger-gen call in the makefile to make use of the docker container:
proto-swagger-gen
$(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace tendermintdev/sdk-proto-gen:v0.1 sh ./scripts/protoc-swagger-gen.sh
The underlying shell script calls a node module, swagger-combine. Currently, the docker image does not contain this node module.
swagger-combine
commit hash: 410d8ed (latest master)
run make proto-swagger-gen as is. you should see this error: --swagger_out: could not find protoc plugin for name swagger
make proto-swagger-gen
--swagger_out: could not find protoc plugin for name swagger
replace the script in the make file for proto-swagger-gen to:
you should see error:
./scripts/protoc-swagger-gen.sh: line 24: swagger-combine: not found
cc: @marbar3778
The text was updated successfully, but these errors were encountered:
closing in favor of #7933
Sorry, something went wrong.
No branches or pull requests
Summary of Bug
I updated the
proto-swagger-gen
call in the makefile to make use of the docker container:The underlying shell script calls a node module,
swagger-combine
. Currently, the docker image does not contain this node module.Version
commit hash: 410d8ed (latest master)
Steps to Reproduce
run
make proto-swagger-gen
as is.you should see this error:
--swagger_out: could not find protoc plugin for name swagger
replace the script in the make file for
proto-swagger-gen
to:you should see error:
cc: @marbar3778
For Admin Use
The text was updated successfully, but these errors were encountered: