blob: 579d540d32995715114f3b81ab5839800d9e006b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
#
# Perform sanity checks on documentation and build it.
#
set -e
make check-builtins
make check-docs
make doc
test -s Documentation/git.html
test -s Documentation/git.xml
test -s Documentation/git.1
|