aboutsummaryrefslogtreecommitdiff
path: root/pkg/api/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/api/Makefile')
-rw-r--r--pkg/api/Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkg/api/Makefile b/pkg/api/Makefile
index 8a1556800..f564b6516 100644
--- a/pkg/api/Makefile
+++ b/pkg/api/Makefile
@@ -2,6 +2,12 @@ export GO111MODULE=off
SWAGGER_OUT ?= swagger.yaml
-swagger:
- swagger generate spec -o ${SWAGGER_OUT} -w ./
- cat tags.yaml >> swagger.yaml
+validate: ${SWAGGER_OUT}
+ swagger validate ${SWAGGER_OUT}
+
+.PHONY: ${SWAGGER_OUT}
+${SWAGGER_OUT}:
+ # generate doesn't remove file on error
+ rm -f ${SWAGGER_OUT}
+ swagger generate spec -o ${SWAGGER_OUT} -i tags.yaml -w ./
+