File: 00-build-manual.sh

package info (click to toggle)
mongrel2 1.12.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 6,020 kB
  • sloc: ansic: 39,099; python: 2,833; sql: 1,555; javascript: 1,202; sh: 467; makefile: 360; asm: 189; yacc: 145; php: 73; awk: 28; sed: 5
file content (9 lines) | stat: -rw-r--r-- 294 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
DIR="$(pwd)"
if test -e "$CHECKOUT_PATH/output/docs/manual/book-final.html"; then
    echo "Manual appears built, not rebuilding"
else
    echo "Building Manual (output in $DIR/output/build-manual.log)"
    cd "$CHECKOUT_PATH"
    dexy setup
    make manual > "$DIR/output/build-manual.log"
fi