mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 18:24:04 +00:00
9 lines
201 B
Bash
Executable File
9 lines
201 B
Bash
Executable File
#!/bin/bash
|
|
mkdir public
|
|
cargo doc --no-deps
|
|
cargo install mdbook --no-default-features
|
|
mdbook build ./book
|
|
cp -r ./target/doc/ ./public
|
|
cp -r ./book/book/* ./public
|
|
find $PWD/public | grep "\.html\$"
|