mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
www: fix book placement
This commit is contained in:
parent
2ffe12a0fc
commit
ff3cfac6bb
1 changed files with 3 additions and 4 deletions
|
@ -11,17 +11,16 @@ main() {
|
|||
local td=$(mktemp -d)
|
||||
|
||||
# build latest docs
|
||||
mkdir $td/$latest
|
||||
mkdir -p $td/$latest/book/
|
||||
cp -r target/doc $td/$latest/api
|
||||
sed 's|URL|rtfm/index.html|g' redirect.html > $td/$latest/api/index.html
|
||||
|
||||
mkdir $td/book/
|
||||
sed 's|URL|0.5|g' redirect.html > $td/index.html
|
||||
sed 's|URL|book/en|g' redirect.html > $td/$latest/index.html
|
||||
for lang in ${langs[@]}; do
|
||||
( cd book/$lang && mdbook build )
|
||||
cp -r book/$lang/book $td/book/$lang
|
||||
cp LICENSE-* $td/book/$lang/
|
||||
cp -r book/$lang/book $td/$latest/book/$lang
|
||||
cp LICENSE-* $td/$latest/book/$lang/
|
||||
done
|
||||
|
||||
local root=$(pwd)
|
||||
|
|
Loading…
Reference in a new issue