Skip to content

Commit 16879e9

Browse files
committed
Makefile: fix fmt target and format json files
Signed-off-by: Jonathan Boulle <[email protected]>
1 parent 7c10f51 commit 16879e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ help:
2727
@echo " * 'validate' - build the validation tool"
2828

2929
fmt:
30-
for i in *.json ; do jq --indent 2 -M . "$${i}" > xx && cat xx > "$${i}" && rm xx ; done
30+
for i in schema/*.json ; do jq --indent 2 -M . "$${i}" > xx && cat xx > "$${i}" && rm xx ; done
3131

3232
docs: $(OUTPUT)/$(DOC_FILENAME).pdf $(OUTPUT)/$(DOC_FILENAME).html
3333

0 commit comments

Comments
 (0)