mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-25 08:36:34 +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
|
|
}
|