mirror of
https://github.com/rust-lang/mdBook
synced 2024-12-14 14:52:37 +00:00
8 lines
165 B
Rust
8 lines
165 B
Rust
|
use assert_cmd::Command;
|
||
|
|
||
|
pub(crate) fn mdbook_cmd() -> Command {
|
||
|
let mut cmd = Command::cargo_bin("mdbook").unwrap();
|
||
|
cmd.env_remove("RUST_LOG");
|
||
|
cmd
|
||
|
}
|