Skip to content

Commit c338359

Browse files
authored
[chore] Fix md generation commands in makefile (open-telemetry#865)
1 parent a04a1f4 commit c338359

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ yamllint:
9595
.PHONY: table-generation
9696
table-generation:
9797
docker run --rm -v $(PWD)/model:/source -v $(PWD)/docs:/spec \
98-
otel/semconvgen:$(SEMCONVGEN_VERSION) -f /source markdown
98+
otel/semconvgen:$(SEMCONVGEN_VERSION) -f /source markdown -md /spec
9999

100100
# Check if current markdown tables differ from the ones that would be generated from YAML definitions
101101
.PHONY: table-check
102102
table-check:
103103
docker run --rm -v $(PWD)/model:/source -v $(PWD)/docs:/spec \
104-
otel/semconvgen:$(SEMCONVGEN_VERSION) -f /source markdown -md /spec
104+
otel/semconvgen:$(SEMCONVGEN_VERSION) -f /source markdown -md /spec --md-check
105105

106106
.PHONY: schema-check
107107
schema-check:

0 commit comments

Comments
 (0)