blob: b106d8c5a19ee101a5e6f0ba48fab4196038b60f (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
set -euxo pipefail
# This script assumes that the current working directory is the repository
# root.
mkdir -p target
cp -r web/static target/github-pages
cargo doc --all-features
cp -r target/doc target/github-pages/docs
|