Not an especially important bug.
I often run mdbook serve -o to view the documentation once I've built it, but if you build the old docs (just build_docs::all_with_old) then run mdbook, the old docs are deleted again. The problem is that we have a folder at docs/release which just contains some Python code, but release is also the name of the folder where we put old versions of docs when we generate them. When you run mdbook serve it clobbers the contents of book/release with docs/release.
You can just open book/index.html directly instead. We could fix this by renaming docs/release to something else.
Not an especially important bug.
I often run
mdbook serve -oto view the documentation once I've built it, but if you build the old docs (just build_docs::all_with_old) then runmdbook, the old docs are deleted again. The problem is that we have a folder atdocs/releasewhich just contains some Python code, butreleaseis also the name of the folder where we put old versions of docs when we generate them. When you runmdbook serveit clobbers the contents ofbook/releasewithdocs/release.You can just open
book/index.htmldirectly instead. We could fix this by renamingdocs/releaseto something else.