mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-23 15:19:44 +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
|