6 lines
218 B
Bash
Executable File
6 lines
218 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# generate documentation only for openethereum and ethcore libraries
|
|
|
|
cargo doc --no-deps --verbose --all &&
|
|
echo '<meta http-equiv=refresh content=0;url=ethcore/index.html>' > target/doc/index.html
|