Add make command to validate swagger file (#4096)

Partial fix for #4088
This commit is contained in:
Fluf 2018-06-02 07:29:12 -04:00 committed by Lauris BH
parent 0549762fd0
commit 28fb255d91
1 changed files with 7 additions and 0 deletions

View File

@ -100,6 +100,13 @@ swagger-check: generate-swagger
exit 1; \
fi;
.PHONY: swagger-validate
swagger-validate:
@hash swagger > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
$(GO) get -u github.com/go-swagger/go-swagger/cmd/swagger; \
fi
swagger validate ./public/swagger.v1.json
.PHONY: errcheck
errcheck:
@hash errcheck > /dev/null 2>&1; if [ $$? -ne 0 ]; then \