Skip to content

Commit

Permalink
Fix displaying errors when rustbook tests fail.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Nov 15, 2020
1 parent 361c4ea commit 5b9e9d0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.lock
Expand Up @@ -3016,6 +3016,7 @@ name = "rustbook"
version = "0.1.0"
dependencies = [
"clap",
"env_logger 0.7.1",
"mdbook",
]

Expand Down
1 change: 1 addition & 0 deletions src/tools/rustbook/Cargo.toml
Expand Up @@ -7,6 +7,7 @@ edition = "2018"

[dependencies]
clap = "2.25.0"
env_logger = "0.7.1"

[dependencies.mdbook]
version = "0.4.3"
Expand Down
1 change: 1 addition & 0 deletions src/tools/rustbook/src/main.rs
Expand Up @@ -9,6 +9,7 @@ use mdbook::errors::Result as Result3;
use mdbook::MDBook;

fn main() {
env_logger::Builder::from_env(env_logger::Env::default().default_filter_or("warn")).init();
let d_message = "-d, --dest-dir=[dest-dir]
'The output directory for your book{n}(Defaults to ./book when omitted)'";
let dir_message = "[dir]
Expand Down

0 comments on commit 5b9e9d0

Please sign in to comment.