mirror of
https://github.com/vee1e/gittuf.git
synced 2026-09-03 03:07:10 +00:00
* Adds trailing newline to Makefile * Adds SPDX header to generation command * Adds CI check to see if docs need to be regenerated Signed-off-by: Aditya Sirish <aditya@saky.in>
9 lines
138 B
Bash
Executable file
9 lines
138 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
make generate
|
|
if [[ $(git --no-pager diff) ]] ; then
|
|
echo "Please re-generate CLI docs"
|
|
exit 1
|
|
fi
|