[chore] Fix md generation commands in makefile (#865)
This commit is contained in:
parent
a04a1f4ba4
commit
c33835975b
4
Makefile
4
Makefile
|
|
@ -95,13 +95,13 @@ yamllint:
|
|||
.PHONY: table-generation
|
||||
table-generation:
|
||||
docker run --rm -v $(PWD)/model:/source -v $(PWD)/docs:/spec \
|
||||
otel/semconvgen:$(SEMCONVGEN_VERSION) -f /source markdown
|
||||
otel/semconvgen:$(SEMCONVGEN_VERSION) -f /source markdown -md /spec
|
||||
|
||||
# Check if current markdown tables differ from the ones that would be generated from YAML definitions
|
||||
.PHONY: table-check
|
||||
table-check:
|
||||
docker run --rm -v $(PWD)/model:/source -v $(PWD)/docs:/spec \
|
||||
otel/semconvgen:$(SEMCONVGEN_VERSION) -f /source markdown -md /spec
|
||||
otel/semconvgen:$(SEMCONVGEN_VERSION) -f /source markdown -md /spec --md-check
|
||||
|
||||
.PHONY: schema-check
|
||||
schema-check:
|
||||
|
|
|
|||
Loading…
Reference in New Issue