File: cmd.rs

package info (click to toggle)
mdbook 0.4.48%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,080 kB
  • sloc: javascript: 1,066; sh: 75; python: 28; makefile: 24
file content (7 lines) | stat: -rw-r--r-- 165 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
use assert_cmd::Command;

pub(crate) fn mdbook_cmd() -> Command {
    let mut cmd = Command::cargo_bin("mdbook").unwrap();
    cmd.env_remove("RUST_LOG");
    cmd
}