1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use crate::errors::TResult;
use std::ffi::OsStr;
use std::path::Path;
use std::process::{Child, Command, Stdio};
pub fn command_with_output<I: IntoIterator<Item = V>, V: AsRef<OsStr>>(
commands: I,
) -> TResult<Child> {
command_impl(commands, None)
.pipe_output()
.spawn()
.map_err(From::from)
}
pub fn command<I: IntoIterator<Item = V>, V: AsRef<OsStr>>(
commands: I,
dir: Option<&Path>,
) -> TResult<Child> {
command_impl(commands, dir)
.pipe_output()
.spawn()
.map_err(From::from)
}
trait PipeCliOutput {
fn pipe_output(&mut self) -> &mut Command;
}
impl PipeCliOutput for Command {
fn pipe_output(&mut self) -> &mut Command {
self.stdout(Stdio::piped());
self.stderr(Stdio::piped())
}
}
fn command_impl<I: IntoIterator<Item = V>, V: AsRef<OsStr>>(
commands: I,
current_dir: Option<&Path>,
) -> Command {
let mut cmd = Command::new("rustup");
let _ = cmd.args(commands);
if let Some(dir) = current_dir {
let _ = cmd.current_dir(dir);
}
cmd
}