tadayosi opened a new issue, #3236: URL: https://github.com/apache/camel-k/issues/3236
When running `make generate-doc` target, it shows the following warnings `can only use path@version syntax with 'go get' and 'go install' in module-aware mode` and although it says the generation done it does not update the CRD API doc. ``` $ make generate-doc ./script/gen_doc.sh Generating API documentation... Generating CRD API documentation... package github.com/djencks/gen-crd-api-reference-docs@e63530f10b55be5f2d82e223d83f86c13e5158e5: can only use path@version syntax with 'go get' and 'go install' in module-aware mode package github.com/djencks/gen-crd-api-reference-docs@e63530f10b55be5f2d82e223d83f86c13e5158e5: can only use path@version syntax with 'go get' and 'go install' in module-aware mode Generating CRD API documentation... Done. Generating API documentation... done! ``` The problem is that `go run path@version` used in `./script/gen_crd/gen_crd_api.sh` is really not allowed. Go version: ``` $ go version go version go1.16.15 linux/amd64 ``` @djencks @squakez Is there a way to make this script work? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
