mirror of
https://github.com/topjohnwu/cxx.git
synced 2025-02-24 18:12:14 +00:00
18 lines
175 B
Bash
Executable File
18 lines
175 B
Bash
Executable File
#!/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
|