mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
remove dbg!
This commit is contained in:
committed by
Aiden McClelland
parent
ddeb5f372d
commit
55346c2115
@@ -68,7 +68,7 @@ impl DockerAction {
|
|||||||
};
|
};
|
||||||
cmd.stdout(std::process::Stdio::piped());
|
cmd.stdout(std::process::Stdio::piped());
|
||||||
cmd.stderr(std::process::Stdio::piped());
|
cmd.stderr(std::process::Stdio::piped());
|
||||||
let mut handle = dbg!(cmd).spawn().with_kind(crate::ErrorKind::Docker)?;
|
let mut handle = cmd.spawn().with_kind(crate::ErrorKind::Docker)?;
|
||||||
if let (Some(input), Some(stdin)) = (&input_buf, &mut handle.stdin) {
|
if let (Some(input), Some(stdin)) = (&input_buf, &mut handle.stdin) {
|
||||||
use tokio::io::AsyncWriteExt;
|
use tokio::io::AsyncWriteExt;
|
||||||
stdin
|
stdin
|
||||||
|
|||||||
Reference in New Issue
Block a user