sharded-gotify/swagger-validate.sh

10 lines
261 B
Bash

#!/usr/bin/env bash
swagger generate spec --scan-models -o docs/spec.json
(cd docs && packr && git add .)
if [[ `git diff docs` ]]; then
git status --porcelain | grep docs
git diff docs
echo Swagger or the Packr file is not up-to-date
exit 1
fi