Skip to content

Commit 72c2e38

Browse files
authored
Merge pull request rust-embedded#30 from rust-embedded/stop-building-books
Stop building books
2 parents 829e8c5 + fdfd705 commit 72c2e38

File tree

3 files changed

+3
-20
lines changed

3 files changed

+3
-20
lines changed

CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

ci/script.sh

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,6 @@ main() {
3232
rustdoc --markdown-css rust.css --markdown-no-toc index.md
3333
rustdoc --markdown-css rust.css faq.md
3434

35-
# build books
36-
local books=(
37-
book
38-
discovery
39-
embedonomicon
40-
)
41-
42-
local tmpdir=$(mktemp -d)
43-
for book in "${books[@]}"; do
44-
git clone https://github.com/rust-embedded/$book $tmpdir/$book
45-
( cd $tmpdir/$book && mdbook build )
46-
mv $tmpdir/$book/book doc/$book
47-
done
48-
49-
rm -rf $tmpdir
50-
5135
# check links
5236
# FIXME(rust-lang-nursery/mdbook#789) remove `--ignore-url` when that bug is fixed
5337
linkchecker --ignore-url "print.html" doc

index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ before.
2424
peripherals, sensors and bare metal programming through a series of small, fun
2525
projects that you'll develop in Rust.
2626

27-
[discovery]: discovery/index.html
27+
[discovery]: https://docs.rust-embedded.org/discovery/index.html
2828

2929
# Learn embedded Rust
3030

@@ -40,7 +40,7 @@ book][book] will get you up to speed with embedded Rust development and then
4040
teach you how to effectively use the language (AKA patterns) to build more
4141
correct embedded software.
4242

43-
[book]: book/index.html
43+
[book]: https://docs.rust-embedded.org/book/index.html
4444

4545
## Operating System development tutorials in Rust on the Raspberry Pi
4646

@@ -81,4 +81,4 @@ of linker scripts, symbols and ABIs. You'll learn about linker script and the
8181
language features that let you control the ABI of crates by creating a `no_std`
8282
program for the ARM Cortex-M architecture from scratch.
8383

84-
[The embedonomicon]:embedonomicon/index.html
84+
[The embedonomicon]: https://docs.rust-embedded.org/embedonomicon/index.html

0 commit comments

Comments
 (0)