Fix path of md table generation make task (#173)
This commit is contained in:
parent
4142dd35dd
commit
fa9dfd3b63
4
Makefile
4
Makefile
|
|
@ -74,13 +74,13 @@ yamllint:
|
|||
# Generate markdown tables from YAML definitions
|
||||
.PHONY: table-generation
|
||||
table-generation:
|
||||
docker run --rm -v $(PWD)/model:/source -v $(PWD)/specification:/spec \
|
||||
docker run --rm -v $(PWD)/model:/source -v $(PWD)/docs:/spec \
|
||||
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)/specification:/spec \
|
||||
docker run --rm -v $(PWD)/model:/source -v $(PWD)/docs:/spec \
|
||||
otel/semconvgen:$(SEMCONVGEN_VERSION) -f /source markdown -md /spec --md-check
|
||||
|
||||
.PHONY: schema-check
|
||||
|
|
|
|||
Loading…
Reference in New Issue