We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents af9e4b3 + 8b8afaf commit daba39cCopy full SHA for daba39c
schema/Makefile
@@ -1,15 +1,17 @@
1
2
-default: help
+default: validate
3
4
help:
5
- @echo "Usage: make <target>"
+ @echo "Usage: make [target]"
6
@echo
7
@echo " * 'fmt' - format the json with indentation"
8
+ @echo " * 'help' - show this help information"
9
@echo " * 'validate' - build the validation tool"
10
11
fmt:
12
for i in *.json ; do jq --indent 4 -M . "$${i}" > xx && cat xx > "$${i}" && rm xx ; done
13
14
+.PHONY: validate
15
validate: validate.go
16
go get -d ./...
17
go build ./validate.go
0 commit comments