aboutsummaryrefslogtreecommitdiff
path: root/book/build.sh
blob: 783d304b0770412255197cc584984345757f8873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

set -e

cd "$(dirname "$0")"

if [ -f ./mdbook ]; then
    ./mdbook build
else
    mdbook build
fi

if [ ! -d node_modules ]; then
    npm install
fi

./build.js