mirror of
https://github.com/sayanarijit/xplr
synced 2024-11-16 12:13:09 +00:00
12 lines
393 B
Bash
12 lines
393 B
Bash
v="0.4.40"
|
|
|
|
curl -L https://github.com/rust-lang/mdBook/releases/download/v$v/mdbook-v$v-x86_64-unknown-linux-gnu.tar.gz -o mdbook.tgz \
|
|
&& tar xzvf mdbook.tgz \
|
|
&& ./mdbook build docs/en \
|
|
&& mkdir dist \
|
|
&& mv -v docs/en/book/html dist/en \
|
|
&& mv -v assets dist \
|
|
&& mv -v docs/landing/index.html docs/landing/css docs/landing/js dist \
|
|
&& rm -v mdbook \
|
|
&& rm -v mdbook.tgz
|